git: 9front

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