From 2f4c86f83ee2c0c7cad9e1a14dd373a8bfb192fb Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 29 Mar 2004 12:43:20 +0000 Subject: 2004-03-29 Ralf Corsepius PR 561/rtems * include/rtems/concat.h: New. * Makefile.am: Add include/rtems/concat.h. PR/589 rtems * Makefile.am: Add include/rtems/pci.h. * Makefile.am: Include automake/compile.am. * configure.ac: RTEMS_TOP([..],[]). --- cpukit/include/rtems/concat.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 cpukit/include/rtems/concat.h (limited to 'cpukit/include') diff --git a/cpukit/include/rtems/concat.h b/cpukit/include/rtems/concat.h new file mode 100644 index 0000000000..df4a7a7b19 --- /dev/null +++ b/cpukit/include/rtems/concat.h @@ -0,0 +1,19 @@ +/* + * 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. + * + * $Id$ + */ + +#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 + +#endif -- cgit v1.2.3