diff --git a/src/uifc/uifcx.c b/src/uifc/uifcx.c
index c3039ed50c683adcc1acc4d40747220dd912794d..b138fd0af60132e1b31d1b1586647c8e4cc369fd 100644
--- a/src/uifc/uifcx.c
+++ b/src/uifc/uifcx.c
@@ -179,22 +179,6 @@ static int which(char* prompt, int max)
     }
 }
 
-/****************************************************************************/
-/* Convert ASCIIZ string to upper case										*/
-/****************************************************************************/
-#if defined(__unix__) && !defined(__HAIKU__)
-static char* strupr(char* str)
-{
-	char*	p=str;
-
-	while(*p) {
-		*p=toupper(*p);
-		p++;
-	}
-	return(str);
-}
-#endif
-
 /****************************************************************************/
 /* General menu function, see uifc.h for details.							*/
 /****************************************************************************/