Files
Android11/external/python/cpython3/Python/getplatform.c
2023-10-13 14:01:41 +00:00

13 lines
133 B
C

#include "Python.h"
#ifndef PLATFORM
#define PLATFORM "unknown"
#endif
const char *
Py_GetPlatform(void)
{
return PLATFORM;
}