summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/structs.h b/src/structs.h
index 5de3a683e..97601af29 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -364,7 +364,7 @@ struct u_header
/*
* structures used in undo.c
*/
-#if SIZEOF_INT > 2
+#if VIM_SIZEOF_INT > 2
# define ALIGN_LONG /* longword alignment and use filler byte */
# define ALIGN_SIZE (sizeof(long))
#else
@@ -1094,7 +1094,7 @@ typedef struct hashtable_S
typedef long_u hash_T; /* Type for hi_hash */
-#if SIZEOF_INT <= 3 /* use long if int is smaller than 32 bits */
+#if VIM_SIZEOF_INT <= 3 /* use long if int is smaller than 32 bits */
typedef long varnumber_T;
#else
typedef int varnumber_T;