1 #ifndef PUBLIC_H 2 #define PUBLIC_H 3 #include <macro_defs.h> 4 5 #define __STRING(x) #x 6 #define PLATFORM_ALIAS(sym) __asm("_" __STRING(sym) DARWIN LINUX) 7 extern int foo() PLATFORM_ALIAS(foo); 8 9 #endif 10