Staging
v0.5.1
https://github.com/python/cpython
Revision a61bdeb8a99585d51052e1e6f02d9883542daa59 authored by Guido van Rossum on 11 October 1995, 17:36:31 UTC, committed by Guido van Rossum on 11 October 1995, 17:36:31 UTC
1 parent d9e9f9c
Raw File
Tip revision: a61bdeb8a99585d51052e1e6f02d9883542daa59 authored by Guido van Rossum on 11 October 1995, 17:36:31 UTC
add delete() method to ftp object
Tip revision: a61bdeb
macgetcompiler.c
/* Return a string representing the compiler name */

#ifdef THINK_C
#define COMPILER " [THINK C]"
#endif

#ifdef __MWERKS__
#ifdef __powerc
#define COMPILER " [CW PPC]"
#else
#ifdef __CFM68K__
#define COMPILER " [CW CFM68K]"
#else
#define COMPILER " [CW 68K]"
#endif
#endif
#endif

#ifdef MPW
#ifdef __SC__
#define COMPILER " [Symantec MPW]"
#else
#define COMPILER " [Apple MPW]"
#endif
#endif

char *
getcompiler()
{
	return COMPILER;
}
back to top