diff options
Diffstat (limited to '')
-rw-r--r-- | test/testFuncs1.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/testFuncs1.c b/test/testFuncs1.c index 50c5905..9af097c 100644 --- a/test/testFuncs1.c +++ b/test/testFuncs1.c @@ -15,6 +15,10 @@ typedef unsigned int ut_int;
typedef signed int t_int;
typedef unsigned char BYTE;
+/*5.3:clang doesnt allow typedef redifinition*/
+#if 0
+typedef const int dummytypedef;
+#endif
const unsigned int shift = 10U;
|