summaryrefslogtreecommitdiffstats
path: root/source/macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/macros.h')
-rw-r--r--source/macros.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/source/macros.h b/source/macros.h
deleted file mode 100644
index 9a9db83..0000000
--- a/source/macros.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef EXITEST_MACROS_H_INCLUDED
-#define EXITEST_MACROS_H_INCLUDED
-
-#define STR(_s) STR2(_s)
-#define STR2(_s) #_s
-
-#define PASTE(_x, _y) PASTE2(_x, _y)
-#define PASTE2(_x, _y) _x ## _y
-
-#define COMMA ,
-
-#define ARRLEN(_a) sizeof(_a) / sizeof(*(_a))
-
-#endif /* include guard */