Staging
v0.8.1
Revision 9b90f7af492e0e4b5b3011c9b5e6207d4cdf0f8c authored by Marc-André Lemburg on 05 May 2010, 13:30:01 UTC, committed by Marc-André Lemburg on 05 May 2010, 13:30:01 UTC
1 parent 926fd4e
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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