Files
MYSOPHAL/api.dsi.sophal.dz/hr_tickets/Python-3.9.6/Python/getplatform.c
2025-11-09 10:02:18 +01:00

13 lines
133 B
C

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