git: 9front

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