From f9b5ca8b857b425635557dda9e587a7c43d1739a Mon Sep 17 00:00:00 2001 From: oni-link Date: Mon, 31 Mar 2014 22:20:59 +0200 Subject: Remove feature HAVE_QSORT qsort conforms to C99, so we don't need our own version. --- src/proto.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/proto.h') diff --git a/src/proto.h b/src/proto.h index ad463bd370..fa538cc2d1 100644 --- a/src/proto.h +++ b/src/proto.h @@ -49,11 +49,6 @@ int vim_vsnprintf(char *str, size_t str_m, char *fmt, va_list ap, typval_T *tvs) #ifndef HAVE_STRPBRK /* not generated automatically from misc2.c */ char_u *vim_strpbrk(char_u *s, char_u *charset); #endif -#ifndef HAVE_QSORT -/* Use our own qsort(), don't define the prototype when not used. */ -void qsort(void *base, size_t elm_count, size_t elm_size, - int (*cmp)(const void *, const void *)); -#endif /* Ugly solution for "BalloonEval" not being defined while it's used in some * .pro files. */ -- cgit