aboutsummaryrefslogtreecommitdiff
path: root/include/shared/stdmacro.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/shared/stdmacro.h')
-rw-r--r--include/shared/stdmacro.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/shared/stdmacro.h b/include/shared/stdmacro.h
new file mode 100644
index 0000000..6010982
--- /dev/null
+++ b/include/shared/stdmacro.h
@@ -0,0 +1,7 @@
+#ifndef _SHARED_STDMACRO_H_
+#define _SHARED_STDMACRO_H_
+
+#define CONCAT_(a, b) a ## b
+#define CONCAT(a, b) CONCAT_(a, b)
+
+#endif /* _SHARED_STDMACRO_H_ */