Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
1a06e1d6ba639bd6ce091c20f2bbb5d282c0f338
/
.
/
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
;
}