aboutsummaryrefslogtreecommitdiff
path: root/tinycc/include/stdalign.h
diff options
context:
space:
mode:
authorUneven Prankster <unevenprankster@protonmail.com>2023-10-15 21:28:29 -0300
committerUneven Prankster <unevenprankster@protonmail.com>2023-10-15 21:28:29 -0300
commit1c0cc775732201f4c4d3ee0d6772be786b3b4aa1 (patch)
treef5d692d046868261275c7430a624c3ea9ed75d3d /tinycc/include/stdalign.h
parenta89f892640cf12f75c7ce18e6e88c70a8d3965ed (diff)
A lot has certainly happened!
Diffstat (limited to 'tinycc/include/stdalign.h')
-rw-r--r--tinycc/include/stdalign.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/tinycc/include/stdalign.h b/tinycc/include/stdalign.h
deleted file mode 100644
index ae46c34..0000000
--- a/tinycc/include/stdalign.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef _STDALIGN_H
-#define _STDALIGN_H
-
-#if __STDC_VERSION__ < 201112L && (defined(__GNUC__) || defined(__TINYC__))
-# define _Alignas(t) __attribute__((__aligned__(t)))
-# define _Alignof(t) __alignof__(t)
-#endif
-
-#define alignas _Alignas
-#define alignof _Alignof
-
-#define __alignas_is_defined 1
-#define __alignof_is_defined 1
-
-#endif /* _STDALIGN_H */
-