Staging
v0.8.1
Revision ebea6fae86f4217b9515f93dc3169b219fc4222e authored by Raymond Hettinger on 05 September 2010, 00:27:25 UTC, committed by Raymond Hettinger on 05 September 2010, 00:27:25 UTC
1 parent d7f73e9
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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