mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
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;
|
||
|
}
|