mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-08 07:23:33 +00:00
0c4c56ff39
README.cosmo contains the necessary links.
12 lines
130 B
C
12 lines
130 B
C
|
|
#include "Python.h"
|
|
|
|
#ifndef PLATFORM
|
|
#define PLATFORM "unknown"
|
|
#endif
|
|
|
|
const char *
|
|
Py_GetPlatform(void)
|
|
{
|
|
return PLATFORM;
|
|
}
|