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

13 lines
130 B
C
Raw Normal View History

2024-07-07 23:08:39 +00:00
#include "Python.h"
#ifndef PLATFORM
#define PLATFORM "unknown"
#endif
const char *
Py_GetPlatform(void)
{
return PLATFORM;
}