cpython/Python/getplatform.c

13 lines
130 B
C
Raw Normal View History

#include "Python.h"
1995-08-04 12:20:48 +08:00
#ifndef PLATFORM
#define PLATFORM "unknown"
#endif
1997-07-20 03:48:41 +08:00
const char *
Py_GetPlatform(void)
1995-08-04 12:20:48 +08:00
{
return PLATFORM;
}