summaryrefslogtreecommitdiff
path: root/src/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/types.h b/src/types.h
index dcdba4ff..645ddd62 100644
--- a/src/types.h
+++ b/src/types.h
@@ -123,6 +123,8 @@
typedef uint64_t u64;
# define U64_C(c) (UINT64_C(c))
# define HAVE_U64_TYPEDEF
+# else
+# error No way to declare a 64 bit integer type
# endif
#endif
@@ -132,9 +134,7 @@ typedef union
short b;
char c[1];
long d;
-#ifdef HAVE_U64_TYPEDEF
u64 e;
-#endif
float f;
double g;
} PROPERLY_ALIGNED_TYPE;