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.
|
#if defined(__WIN32__) || 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
|
|
|