mirror of
https://github.com/drasko/codezero.git
synced 2026-01-11 18:33:16 +01:00
10 lines
271 B
C
10 lines
271 B
C
#ifndef __TEST_MACROS_H__
|
|
#define __TEST_MACROS_H__
|
|
|
|
#define __INC_ARCH(x) <arch/__ARCH__/x>
|
|
#define __INC_SUBARCH(x) <arch/__ARCH__/__SUBARCH__/x>
|
|
#define __INC_PLAT(x) <platform/__PLATFORM__/x>
|
|
#define __INC_GLUE(x) <glue/__ARCH__/x>
|
|
|
|
#endif /* __TEST_MACROS_H__ */
|