cpython/Python/getplatform.c

13 lines
133 B
C
Raw Normal View History

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