summaryrefslogtreecommitdiff
path: root/include/rtems/concat.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/rtems/concat.h')
-rw-r--r--include/rtems/concat.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/include/rtems/concat.h b/include/rtems/concat.h
new file mode 100644
index 0000000000..022f1bfd39
--- /dev/null
+++ b/include/rtems/concat.h
@@ -0,0 +1,26 @@
+/**
+ * @file rtems/concat.h
+ *
+ * This include file defines ANSI concatenation macros.
+ */
+
+/*
+ * Copyright (c) 2004,2005 Ralf Corsepius, Ulm, Germany.
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
+#ifndef _RTEMS_CONCAT_H
+#define _RTEMS_CONCAT_H
+
+/* ANSI concatenation macros. */
+
+#define CONCAT1(a, b) CONCAT2(a, b)
+#define CONCAT2(a, b) a ## b
+
+#define EXPAND0(x) x
+#define CONCAT0(a,b) EXPAND0(a)EXPAND0(b)
+
+#endif