source: rtems/cpukit/include/rtems/concat.h @ f26145b

4.104.114.84.95
Last change on this file since f26145b was 8ff51798, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/28/05 at 05:14:20

New header guards.

  • 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.