mirror of
https://github.com/python/cpython
synced 2026-09-26 16:21:04 +03: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;
|
|
}
|