summaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'types.h')
-rw-r--r--types.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/types.h b/types.h
index 9affa5e..d9fc550 100644
--- a/types.h
+++ b/types.h
@@ -37,17 +37,13 @@ typedef long longlong;
#endif
-#if __STDC_VERSION__ < 201112
/* try to find the type with the strictest alignment */
typedef union {
- long double floating;
+ double floating;
void *ptr;
longlong integer;
void (*fn_ptr)(void);
} MaxAlign;
-#else
-typedef max_align_t MaxAlign;
-#endif
typedef uint8_t U8;
#define U8_MAX UINT8_MAX