diff options
Diffstat (limited to 'src/spellfile.c')
-rw-r--r-- | src/spellfile.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/spellfile.c b/src/spellfile.c index 00f6b7cb8..2616afbbb 100644 --- a/src/spellfile.c +++ b/src/spellfile.c @@ -4802,19 +4802,12 @@ node_equal(wordnode_T *n1, wordnode_T *n2) return p1 == NULL && p2 == NULL; } -static int -#ifdef __BORLANDC__ -_RTLENTRYF -#endif -rep_compare(const void *s1, const void *s2); +static int rep_compare(const void *s1, const void *s2); /* * Function given to qsort() to sort the REP items on "from" string. */ static int -#ifdef __BORLANDC__ -_RTLENTRYF -#endif rep_compare(const void *s1, const void *s2) { fromto_T *p1 = (fromto_T *)s1; |