RTEMS 5.2
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
concat.h
Go to the documentation of this file.
1
7/*
8 * Copyright (c) 2004,2005 Ralf Corsepius, Ulm, Germany.
9 *
10 * The license and distribution terms for this file may be
11 * found in the file LICENSE in this distribution or at
12 * http://www.rtems.org/license/LICENSE.
13 */
14
15#ifndef _RTEMS_CONCAT_H
16#define _RTEMS_CONCAT_H
17
18/* ANSI concatenation macros. */
19
20#define CONCAT1(a, b) CONCAT2(a, b)
21#define CONCAT2(a, b) a ## b
22
23#define EXPAND0(x) x
24#define CONCAT0(a,b) EXPAND0(a)EXPAND0(b)
25
26#endif