Staging
v0.5.1
https://github.com/python/cpython
Revision 703e2c153b95cd0b63788036ae803fd1862ac223 authored by Jack Jansen on 09 October 1995, 23:18:21 UTC, committed by Jack Jansen on 09 October 1995, 23:18:21 UTC
1 parent 316ba5d
Raw File
Tip revision: 703e2c153b95cd0b63788036ae803fd1862ac223 authored by Jack Jansen on 09 October 1995, 23:18:21 UTC
Changed CW signature and fixed .as/.hqx creator/type
Tip revision: 703e2c1
getcompiler.c
#ifdef __GNUC__
#define COMPILER " [GCC " __VERSION__ "]"
#endif

#ifndef COMPILER
#ifdef __cplusplus
#define COMPILER "[C++]"
#else
#define COMPILER "[C]"
#endif
#endif

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