Staging
v0.8.1
Revision 5b63acd31e0e40c1a9a9e9762905b0054ff37994 authored by Benjamin Peterson on 29 March 2008, 15:24:25 UTC, committed by Benjamin Peterson on 29 March 2008, 15:24:25 UTC
1 parent 672fbf5
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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