1 2#include "Python.h" 3 4#ifndef PLATFORM 5#define PLATFORM "unknown" 6#endif 7 8const char * 9Py_GetPlatform(void) 10{ 11 return PLATFORM; 12} 13