Poodletooth-iLand/build/nirai/python/Python/getplatform.c
2015-11-14 14:28:53 -05:00

12 lines
130 B
C

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