Poodletooth-iLand/build/nirai/python/Python/getplatform.c

13 lines
130 B
C
Raw Permalink Normal View History

2015-11-14 19:28:53 +00:00
#include "Python.h"
#ifndef PLATFORM
#define PLATFORM "unknown"
#endif
const char *
Py_GetPlatform(void)
{
return PLATFORM;
}