diff options
-rw-r--r-- | src/types.h | 2 | ||||
-rw-r--r-- | src/vim.h | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/types.h b/src/types.h index a82b8c8e86..0d8c0b3e4e 100644 --- a/src/types.h +++ b/src/types.h @@ -9,6 +9,8 @@ #ifndef NEOVIM_TYPES_H #define NEOVIM_TYPES_H +#include <stdint.h> + /* * Shorthand for unsigned variables. Many systems, but not all, have u_char * already defined, so we use char_u to avoid trouble. @@ -149,9 +149,6 @@ typedef unsigned long u8char_T; /* long should be 32 bits or more */ #include <assert.h> -#ifdef HAVE_STDINT_H -# include <stdint.h> -#endif #ifdef HAVE_INTTYPES_H # include <inttypes.h> #endif |