https://github.com/python/cpython
Raw File
Tip revision: 8d999cbf4adea053be6dbb612b9844635c4dfb8e authored by Ned Deily on 28 December 2021, 07:08:54 UTC
Update REAME and Docs sidebar for EOL
Tip revision: 8d999cb
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

const char *
Py_GetPlatform(void)
{
	return PLATFORM;
}
back to top