Staging
v0.8.1
Revision 0063367c7c79836608062fe7d958ae262afa820f authored by Benjamin Peterson on 03 July 2010, 13:56:56 UTC, committed by Benjamin Peterson on 03 July 2010, 13:56:56 UTC
1 parent c60082d
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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