summaryrefslogtreecommitdiffstats
path: root/src/userfunc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/userfunc.c')
-rw-r--r--src/userfunc.c18
1 files changed, 2 insertions, 16 deletions
diff --git a/src/userfunc.c b/src/userfunc.c
index bd7d2f7d81..28cf8b8a0f 100644
--- a/src/userfunc.c
+++ b/src/userfunc.c
@@ -55,16 +55,8 @@ static char *e_nofunc = N_("E130: Unknown function: %s");
static void func_do_profile(ufunc_T *fp);
static void prof_sort_list(FILE *fd, ufunc_T **sorttab, int st_len, char *title, int prefer_self);
static void prof_func_line(FILE *fd, int count, proftime_T *total, proftime_T *self, int prefer_self);
-static int
-# ifdef __BORLANDC__
- _RTLENTRYF
-# endif
- prof_total_cmp(const void *s1, const void *s2);
-static int
-# ifdef __BORLANDC__
- _RTLENTRYF
-# endif
- prof_self_cmp(const void *s1, const void *s2);
+static int prof_total_cmp(const void *s1, const void *s2);
+static int prof_self_cmp(const void *s1, const void *s2);
#endif
static void funccal_unref(funccall_T *fc, ufunc_T *fp, int force);
@@ -2794,9 +2786,6 @@ prof_func_line(
* Compare function for total time sorting.
*/
static int
-#ifdef __BORLANDC__
-_RTLENTRYF
-#endif
prof_total_cmp(const void *s1, const void *s2)
{
ufunc_T *p1, *p2;
@@ -2810,9 +2799,6 @@ prof_total_cmp(const void *s1, const void *s2)
* Compare function for self time sorting.
*/
static int
-#ifdef __BORLANDC__
-_RTLENTRYF
-#endif
prof_self_cmp(const void *s1, const void *s2)
{
ufunc_T *p1, *p2;