Kyle Swenson | 8d8f654 | 2021-03-15 11:02:55 -0600 | [diff] [blame^] | 1 | /* Include paths to be used in interface defining headers */ |
2 | #ifndef POWERPC_PERF_REQ_GEN_H_ | ||||
3 | #define POWERPC_PERF_REQ_GEN_H_ | ||||
4 | |||||
5 | #define CAT2_STR_(t, s) __stringify(t/s) | ||||
6 | #define CAT2_STR(t, s) CAT2_STR_(t, s) | ||||
7 | #define I(...) __VA_ARGS__ | ||||
8 | |||||
9 | #endif | ||||
10 | |||||
11 | #define REQ_GEN_PREFIX req-gen | ||||
12 | #define REQUEST_BEGIN CAT2_STR(REQ_GEN_PREFIX, _request-begin.h) | ||||
13 | #define REQUEST_END CAT2_STR(REQ_GEN_PREFIX, _request-end.h) |