diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-05-19 20:53:52 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-05-19 20:53:52 +0000 |
commit | 9c13b359b496c5268702776105a9f87b269e84f3 (patch) | |
tree | d010b277d0d66dadbe78a5d80b164ef0d79a49c2 /src/proto.h | |
parent | 34cdc3e32917a3812a8ec4369c64ef3e35243cfd (diff) | |
download | vim-git-9c13b359b496c5268702776105a9f87b269e84f3.tar.gz |
updated for version 7.0073
Diffstat (limited to 'src/proto.h')
-rw-r--r-- | src/proto.h | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/src/proto.h b/src/proto.h index cff55c3ce..e24ebb48f 100644 --- a/src/proto.h +++ b/src/proto.h @@ -95,25 +95,32 @@ extern int _stricoll __ARGS((char *a, char *b)); # include "hashtable.pro" # include "main.pro" # include "mark.pro" +# include "memfile.pro" +# include "memline.pro" +# ifdef FEAT_MENU +# 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. */ int -#ifdef __BORLANDC__ +# ifdef __BORLANDC__ _RTLENTRYF -#endif +# endif smsg __ARGS((char_u *, ...)); int -#ifdef __BORLANDC__ +# ifdef __BORLANDC__ _RTLENTRYF -#endif +# endif smsg_attr __ARGS((int, char_u *, ...)); +int +# ifdef __BORLANDC__ +_RTLENTRYF +# endif +vim_snprintf __ARGS((char *, size_t, char *, ...)); # endif -# include "memfile.pro" -# include "memline.pro" -# ifdef FEAT_MENU -# include "menu.pro" -# endif + # include "message.pro" # include "misc1.pro" # include "misc2.pro" |