2005-10-27 Ralf Corsepius <ralf.corsepius@rtems.org>

* include/rtems/concat.h: Add EXPAND0, CONCAT0.
This commit is contained in:
Ralf Corsepius
2005-10-27 07:23:53 +00:00
parent aa40f6fac4
commit 585cba912e
2 changed files with 7 additions and 0 deletions
+4
View File
@@ -1,3 +1,7 @@
2005-10-27 Ralf Corsepius <ralf.corsepius@rtems.org>
* include/rtems/concat.h: Add EXPAND0, CONCAT0.
2005-10-27 Ralf Corsepius <ralf.corsepius@rtems.org>
* telnetd/Makefile.am: Only build if LIBSHELL is available.
+3
View File
@@ -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