source: rtems/cpukit/include/rtems/concat.h @ 048dcd2b

4.104.114.84.95
Last change on this file since 048dcd2b was 2f4c86f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/29/04 at 12:43:20

2004-03-29 Ralf Corsepius <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(..,[]).
  • Property mode set to 100644
File size: 367 bytes
Line 
1/*
2 *  The license and distribution terms for this file may be
3 *  found in found in the file LICENSE in this distribution or at
4 *  http://www.rtems.com/license/LICENSE.
5 *
6 *  $Id$
7 */
8
9#ifndef _rtems_concat_h
10#define _rtems_concat_h
11
12/* ANSI concatenation macros.  */
13
14#define CONCAT1(a, b) CONCAT2(a, b)
15#define CONCAT2(a, b) a ## b
16
17#define EXPAND0(x) x
18
19#endif
Note: See TracBrowser for help on using the repository browser.