Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
allendowney
GitHub Repository: allendowney/cpython
Path: blob/main/Python/getplatform.c
12 views
1
2
#include "Python.h"
3
4
#ifndef PLATFORM
5
#define PLATFORM "unknown"
6
#endif
7
8
const char *
9
Py_GetPlatform(void)
10
{
11
return PLATFORM;
12
}
13
14