Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
877b23202b7e7d4f57b58504fd0eb886e8c0b377
/
.
/
Python
/
getplatform.c
blob: 81a0f7ac5378bd55e02ab93148293266d8491921 [
file
] [
log
] [
blame
]
#include
"Python.h"
#ifndef
PLATFORM
#define
PLATFORM
"unknown"
#endif
const
char
*
Py_GetPlatform
(
void
)
{
return
PLATFORM
;
}