Staging
v0.5.1
Revision 4531f8dd378c53e88257651eaa503086366fac1f authored by Raymond Hettinger on 31 October 2010, 22:39:33 UTC, committed by Raymond Hettinger on 31 October 2010, 22:39:33 UTC
1 parent c6b6b5b
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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