 |
RTEMS 5.4-rc2
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
15#ifndef _RTEMS_CONCAT_H
16#define _RTEMS_CONCAT_H
20#define CONCAT1(a, b) CONCAT2(a, b)
21#define CONCAT2(a, b) a ## b
24#define CONCAT0(a,b) EXPAND0(a)EXPAND0(b)