You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
302 B
ArmAsm
13 lines
302 B
ArmAsm
#if ((defined(_WIN32) || defined(__CYGWIN__)) && defined(__i386__)) || defined(__APPLE__)
|
|
#define CDECL(symbol) _##symbol
|
|
#else
|
|
#define CDECL(symbol) symbol
|
|
#endif
|
|
|
|
#if __ELF__
|
|
#define TYPE_DIRECTIVE(symbol, symboltype) .type symbol, symboltype
|
|
#else
|
|
#define TYPE_DIRECTIVE(symbol, symboltype)
|
|
#endif
|
|
|