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