git: 9front

ref: f76b831c21f87ebf32d567dfcf4d8bbb485e1a54
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;
}