summaryrefslogtreecommitdiffstats
path: root/src/spell.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/spell.c')
-rw-r--r--src/spell.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/spell.c b/src/spell.c
index 947bee5187..8f32fd7c3a 100644
--- a/src/spell.c
+++ b/src/spell.c
@@ -6760,20 +6760,13 @@ rescore_one(suginfo_T *su, suggest_T *stp)
}
}
-static int
-#ifdef __BORLANDC__
-_RTLENTRYF
-#endif
-sug_compare(const void *s1, const void *s2);
+static int sug_compare(const void *s1, const void *s2);
/*
* Function given to qsort() to sort the suggestions on st_score.
* First on "st_score", then "st_altscore" then alphabetically.
*/
static int
-#ifdef __BORLANDC__
-_RTLENTRYF
-#endif
sug_compare(const void *s1, const void *s2)
{
suggest_T *p1 = (suggest_T *)s1;