shithub: riscv

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