diff options
Diffstat (limited to 'src/misc2.c')
-rw-r--r-- | src/misc2.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/misc2.c b/src/misc2.c index 3ef7c9422..f9f6bf58e 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); |