shithub: mc

ref: 94e28af38c7cac02c5b592dbbb3d6205d37cb2f2
dir: /8/platform.h/

View raw version
#if defined(__APPLE__) && defined(__MACH__)
/* for OSX */
#   define Asmcmd "as -arch i386 -g -o %s %s"
#   define Fprefix "_"
#else
/* Default to linux */
#   define Asmcmd "as --32 -g -o %s %s"
#   define Fprefix ""
#endif