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