Staging
v0.8.1
Revision a14034872bfe9b5fca07125e7369b8c7030c164b authored by Georg Brandl on 12 October 2013, 20:55:34 UTC, committed by Georg Brandl on 12 October 2013, 20:55:34 UTC
1 parent f54ab1f
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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