summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/concat.h
blob: df4a7a7b19ce41bc03ede334affd9fa467a247f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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