DEBSOURCES
Skip Quicknav
sources / python2.7 / 2.7.3-6%2Bdeb7u2 / Python / getplatform.c
123456789101112
#include "Python.h" #ifndef PLATFORM #define PLATFORM "unknown" #endif const char * Py_GetPlatform(void) { return PLATFORM; }