cpython/Mac/Python/macgetcompiler.c

28 lines
376 B
C
Raw Normal View History

1995-08-08 14:11:07 +00:00
/* Return a string representing the compiler name */
#ifdef THINK_C
#define COMPILER " [THINK C]"
#endif
#ifdef __MWERKS__
#ifdef __powerc
#define COMPILER " [CW PPC]"
#else
#define COMPILER " [CW 68K]"
#endif
#endif
#ifdef MPW
#ifdef __SC__
#define COMPILER " [Symantec MPW]"
#else
#define COMPILER " [Apple MPW]"
#endif
#endif
char *
getcompiler()
{
return COMPILER;
}