mirror of
https://github.com/python/cpython
synced 2024-11-02 09:48:08 +00:00
12 lines
133 B
C
12 lines
133 B
C
|
|
#include "Python.h"
|
|
|
|
#ifndef PLATFORM
|
|
#define PLATFORM "unknown"
|
|
#endif
|
|
|
|
const char *
|
|
Py_GetPlatform(void)
|
|
{
|
|
return PLATFORM;
|
|
}
|