git: 9front

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