summaryrefslogtreecommitdiff
path: root/arr.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-01-26 18:14:12 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-01-26 18:14:12 -0500
commit7b496e781ddac230e356bcf7afdb3cf3a58126ed (patch)
tree38b279bb66a541117f33c3ff4701103909be117e /arr.c
parent65b6850a7dc3211566993f8a2cfacf61f5b4d6a2 (diff)
make dyn arrays use less memory
Diffstat (limited to 'arr.c')
-rw-r--r--arr.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/arr.c b/arr.c
index 56fbe47..dea2760 100644
--- a/arr.c
+++ b/arr.c
@@ -31,9 +31,6 @@ For more information, please refer to <http://unlicense.org/>
// before including this file
#include <stddef.h>
-#if __STDC_VERSION__ >= 201112L
-typedef max_align_t ArrMaxAlign;
-#else
typedef union {
long num;
void *ptr;
@@ -43,7 +40,6 @@ typedef union {
#endif
double flt;
} ArrMaxAlign;
-#endif
#if __STDC_VERSION__ < 199901L && !defined inline
#define inline
#endif