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