tauthon2.7/Python/getplatform.c
2025-08-15 16:28:06 +02:00

13 lines
130 B
C

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