Staging
v0.8.1
Revision 8239fd704637d7cbf59273883fbe487fc0f568fc authored by Terry Jan Reedy on 11 September 2017, 20:43:26 UTC, committed by GitHub on 11 September 2017, 20:43:26 UTC
1 parent 667522e
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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