historical/toontown-just-works.git/build/nirai/python/Python/getplatform.c

13 lines
130 B
C
Raw Normal View History

2024-01-16 17:20:27 +00:00
#include "Python.h"
#ifndef PLATFORM
#define PLATFORM "unknown"
#endif
const char *
Py_GetPlatform(void)
{
return PLATFORM;
}