DEBSOURCES
Skip Quicknav
sources / python3.5 / 3.5.3-1%2Bdeb9u1 / Python / getplatform.c
123456789101112
#include "Python.h" #ifndef PLATFORM #define PLATFORM "unknown" #endif const char * Py_GetPlatform(void) { return PLATFORM; }