You can not 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
351 B
13 lines
351 B
/* eliminate x86 specific compiler statements for other platforms */
|
|
/* future versions should use undersore version of platform names */
|
|
|
|
#if defined(_MIPS_) || defined(_ALPHA_) || defined(_PPC_)
|
|
#define __stdcall
|
|
#define _stdcall
|
|
#define stdcall
|
|
#define __cdecl
|
|
#define _cdecl
|
|
#define cdecl
|
|
#define __export
|
|
#define _export
|
|
#endif
|