summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/concat.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-10-27 07:23:53 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-10-27 07:23:53 +0000
commit585cba912ef9ea4790724f5d408c3e425d10a447 (patch)
tree342881a5f91bf7c4ba3e6e6ec0aafc1b7eaa1a3f /cpukit/include/rtems/concat.h
parentCosmetics. (diff)
downloadrtems-585cba912ef9ea4790724f5d408c3e425d10a447.tar.bz2
2005-10-27 Ralf Corsepius <ralf.corsepius@rtems.org>
* include/rtems/concat.h: Add EXPAND0, CONCAT0.
Diffstat (limited to 'cpukit/include/rtems/concat.h')
-rw-r--r--cpukit/include/rtems/concat.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpukit/include/rtems/concat.h b/cpukit/include/rtems/concat.h
index 5be72c02bd..79bdd8879c 100644
--- a/cpukit/include/rtems/concat.h
+++ b/cpukit/include/rtems/concat.h
@@ -1,4 +1,6 @@
/*
+ * Copyright (c) 2004,2005 Ralf Corsepius, Ulm, Germany.
+ *
* The license and distribution terms for this file may be
* found in found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
@@ -15,5 +17,6 @@
#define CONCAT2(a, b) a ## b
#define EXPAND0(x) x
+#define CONCAT0(a,b) EXPAND0(a)EXPAND0(b)
#endif