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