Staging
v0.8.1
Revision c3bf14d1ebce053852298d4a83d524afa670ffc7 authored by Benjamin Peterson on 24 January 2014, 16:44:40 UTC, committed by Benjamin Peterson on 24 January 2014, 16:44:40 UTC
2 parent s 4b4f9eb + f0b463a
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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