Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
ca42b1673b09a1abee2f60015637fed94b8aabd8
/
.
/
Python
/
getcompiler.c
blob: a65789fb0722df0aa3aafebc7d9aae0ea671fdb1 [
file
] [
log
] [
blame
]
#ifdef
__GNUC__
#define
COMPILER
" [GCC "
__VERSION__
"]"
#endif
#ifndef
COMPILER
#ifdef
__cplusplus
#define
COMPILER
"[C++]"
#else
#define
COMPILER
"[C]"
#endif
#endif
char
*
getcompiler
()
{
return
COMPILER
;
}