0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 08:20:55 +01:00
cpython/Python/getplatform.c

13 lines
130 B
C
Raw Normal View History

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