shithub: riscv

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