aboutsummaryrefslogtreecommitdiff
path: root/src/proto.h
diff options
context:
space:
mode:
authoroni-link <knil.ino@gmail.com>2014-03-31 22:20:59 +0200
committerThiago de Arruda <tpadilha84@gmail.com>2014-03-31 21:24:59 -0300
commitf9b5ca8b857b425635557dda9e587a7c43d1739a (patch)
tree24d338cfc352d6efef0b6abbc4956609ca207fe4 /src/proto.h
parent7b14caf6044769483bb6fef9ee8dc71003f91494 (diff)
downloadrneovim-f9b5ca8b857b425635557dda9e587a7c43d1739a.tar.gz
rneovim-f9b5ca8b857b425635557dda9e587a7c43d1739a.tar.bz2
rneovim-f9b5ca8b857b425635557dda9e587a7c43d1739a.zip
Remove feature HAVE_QSORT
qsort conforms to C99, so we don't need our own version.
Diffstat (limited to 'src/proto.h')
-rw-r--r--src/proto.h5
1 files changed, 0 insertions, 5 deletions
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. */