|
RTEMS 6.1-rc2
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
34#ifndef _RTEMS_CONCAT_H
35#define _RTEMS_CONCAT_H
39#define CONCAT1(a, b) CONCAT2(a, b)
40#define CONCAT2(a, b) a ## b
43#define CONCAT0(a,b) EXPAND0(a)EXPAND0(b)