summaryrefslogtreecommitdiff
path: root/src/proto.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-30 21:48:49 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-30 21:48:49 +0100
commitba4ef2757cfc126f342b710f1ad9ea39e6b56cec (patch)
tree6cf877a8c549b74c010e51be5ca91cd436b39162 /src/proto.h
parentb638a7be952544ceb03052c25b84224577a6494b (diff)
downloadvim-git-ba4ef2757cfc126f342b710f1ad9ea39e6b56cec.tar.gz
patch 7.4.1216v7.4.1216
Problem: Still using HAVE_STDARG_H. Solution: Assume it's always defined.
Diffstat (limited to 'src/proto.h')
-rw-r--r--src/proto.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/proto.h b/src/proto.h
index 63e1249ba..1f68b219e 100644
--- a/src/proto.h
+++ b/src/proto.h
@@ -104,9 +104,7 @@ extern int _stricoll(char *a, char *b);
# include "menu.pro"
# endif
-# if !defined MESSAGE_FILE || defined(HAVE_STDARG_H)
- /* These prototypes cannot be produced automatically and conflict with
- * the old-style prototypes in message.c. */
+/* These prototypes cannot be produced automatically. */
int
# ifdef __BORLANDC__
_RTLENTRYF
@@ -131,10 +129,7 @@ _RTLENTRYF
# endif
vim_snprintf(char *, size_t, char *, ...);
-# if defined(HAVE_STDARG_H)
int vim_vsnprintf(char *str, size_t str_m, char *fmt, va_list ap, typval_T *tvs);
-# endif
-# endif
# include "message.pro"
# include "misc1.pro"