Sign in
android
/
platform
/
external
/
python
/
cpython3
/
32398294fb3fcf4ee74da54722fd0221c4e6cb74
/
.
/
Python
/
getplatform.c
blob: 81a0f7ac5378bd55e02ab93148293266d8491921 [
file
]
#include
"Python.h"
#ifndef
PLATFORM
#define
PLATFORM
"unknown"
#endif
const
char
*
Py_GetPlatform
(
void
)
{
return
PLATFORM
;
}