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