Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
28db1f61f20352c02e4ae1518e5aeb6505df3045
/
.
/
Python
/
getplatform.c
blob: 81a0f7ac5378bd55e02ab93148293266d8491921 [
file
]
#include
"Python.h"
#ifndef
PLATFORM
#define
PLATFORM
"unknown"
#endif
const
char
*
Py_GetPlatform
(
void
)
{
return
PLATFORM
;
}