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