diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-26 18:14:12 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-26 18:14:12 -0500 |
commit | 7b496e781ddac230e356bcf7afdb3cf3a58126ed (patch) | |
tree | 38b279bb66a541117f33c3ff4701103909be117e | |
parent | 65b6850a7dc3211566993f8a2cfacf61f5b4d6a2 (diff) |
make dyn arrays use less memory
-rw-r--r-- | arr.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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 |