cpython/Python/getplatform.c

13 lines
133 B
C
Raw Permalink Normal View History

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