Staging
v0.8.1
Revision b0907bf554198c12ffd5276010071aac294394c8 authored by Fred Drake on 10 March 2005, 04:59:14 UTC, committed by Fred Drake on 10 March 2005, 04:59:14 UTC
- add support for additional markup: \leq, \textbar, \textit
- add a comment about the non-support for the Euro character
1 parent 32ffd3d
Raw File
getcompiler.c

/* Return the compiler identification, if possible. */

#include "Python.h"

#ifndef COMPILER

#ifdef __GNUC__
#define COMPILER "\n[GCC " __VERSION__ "]"
#endif

#endif /* !COMPILER */

#ifndef COMPILER

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

#endif /* !COMPILER */

const char *
Py_GetCompiler(void)
{
	return COMPILER;
}
back to top