mirror of
https://github.com/python/cpython.git
synced 2024-11-24 17:47:13 +01:00
8586991099
This should match the situation in the 1.6b1 tree.
13 lines
130 B
C
13 lines
130 B
C
|
|
#include "Python.h"
|
|
|
|
#ifndef PLATFORM
|
|
#define PLATFORM "unknown"
|
|
#endif
|
|
|
|
const char *
|
|
Py_GetPlatform(void)
|
|
{
|
|
return PLATFORM;
|
|
}
|