ref: 25b9e54dc071401e304848dbf8c6c81e6cdfdc6d dir: /sys/src/cmd/python/Python/getplatform.c/
#include "Python.h" #ifndef PLATFORM #define PLATFORM "plan9" #endif const char * Py_GetPlatform(void) { return PLATFORM; }