summaryrefslogtreecommitdiffstats
path: root/src/misc2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc2.c')
-rw-r--r--src/misc2.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/misc2.c b/src/misc2.c
index 3ef7c94222..f9f6bf58e8 100644
--- a/src/misc2.c
+++ b/src/misc2.c
@@ -3912,16 +3912,9 @@ qsort(
/*
* Sort an array of strings.
*/
-static int
-#ifdef __BORLANDC__
-_RTLENTRYF
-#endif
-sort_compare(const void *s1, const void *s2);
+static int sort_compare(const void *s1, const void *s2);
static int
-#ifdef __BORLANDC__
-_RTLENTRYF
-#endif
sort_compare(const void *s1, const void *s2)
{
return STRCMP(*(char **)s1, *(char **)s2);