Staging
v0.5.1
Revision 5191a71128272b55ec8252c71650442bcd413811 authored by Anthony Baxter on 08 February 2005, 13:27:52 UTC, committed by Anthony Baxter on 08 February 2005, 13:27:52 UTC
1 parent cb0b3b1
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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