mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
updated for version 7.1-236
This commit is contained in:
20
src/vim.h
20
src/vim.h
@@ -1550,6 +1550,16 @@ int vim_memcmp __ARGS((void *, void *, size_t));
|
||||
# define MB_MAXBYTES 21
|
||||
#endif
|
||||
|
||||
#if (defined(FEAT_PROFILE) || defined(FEAT_RELTIME)) && !defined(PROTO)
|
||||
# ifdef WIN3264
|
||||
typedef LARGE_INTEGER proftime_T;
|
||||
# else
|
||||
typedef struct timeval proftime_T;
|
||||
# endif
|
||||
#else
|
||||
typedef int proftime_T; /* dummy for function prototypes */
|
||||
#endif
|
||||
|
||||
/* Include option.h before structs.h, because the number of window-local and
|
||||
* buffer-local options is used there. */
|
||||
#include "option.h" /* options and default values */
|
||||
@@ -1762,16 +1772,6 @@ typedef int VimClipboard; /* This is required for the prototypes. */
|
||||
# define stat(a,b) (access(a,0) ? -1 : stat(a,b))
|
||||
#endif
|
||||
|
||||
#if (defined(FEAT_PROFILE) || defined(FEAT_RELTIME)) && !defined(PROTO)
|
||||
# ifdef WIN3264
|
||||
typedef LARGE_INTEGER proftime_T;
|
||||
# else
|
||||
typedef struct timeval proftime_T;
|
||||
# endif
|
||||
#else
|
||||
typedef int proftime_T; /* dummy for function prototypes */
|
||||
#endif
|
||||
|
||||
#include "ex_cmds.h" /* Ex command defines */
|
||||
#include "proto.h" /* function prototypes */
|
||||
|
||||
|
Reference in New Issue
Block a user