summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2008-01-19 14:59:58 +0000
committerBram Moolenaar <Bram@vim.org>2008-01-19 14:59:58 +0000
commit91a4e82243198d3c54b51296c532005daf5ccd3b (patch)
treec25223c268fa6be1229012ac34162233ef84e255 /src/vim.h
parent4bad6c8d3dfe81d6171f20f1c3f7fc76bc2d89a7 (diff)
downloadvim-git-91a4e82243198d3c54b51296c532005daf5ccd3b.tar.gz
updated for version 7.1-236v7.1.236
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/vim.h b/src/vim.h
index bfbfde06e..02143d92d 100644
--- a/src/vim.h
+++ b/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 */