Files
INTUIA/Programa final/Python-3.10.15/Python/getplatform.c
T

13 lines
133 B
C
Raw Normal View History

2026-03-15 13:27:50 +00:00
#include "Python.h"
#ifndef PLATFORM
#define PLATFORM "unknown"
#endif
const char *
Py_GetPlatform(void)
{
return PLATFORM;
}