git: 9front

ref: c9a4dc6ae84c9af3c27be7a7c24dcdb8ac5f4bd6
dir: /sys/src/cmd/python/Python/getplatform.c/

View raw version

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "plan9"
#endif

const char *
Py_GetPlatform(void)
{
	return PLATFORM;
}