cpython/Python/getplatform.c
2017-11-28 17:56:10 +02:00

13 lines
133 B
C

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