Staging
v0.5.1
Revision 724ef20e24b8c5b8bce394f70c3eddf3540ebb42 authored by Anthony Baxter on 25 January 2005, 13:08:15 UTC, committed by Anthony Baxter on 25 January 2005, 13:08:15 UTC
1 parent c859084
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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