Files
INTUIA/Programa final/Python-3.10.15/Python/getplatform.c
T
2026-03-15 13:27:50 +00:00

13 lines
133 B
C

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