Staging
v0.5.1
Revision f30bc11ce0c3398d314adc0b45131a26825f1d26 authored by Anthony Baxter on 02 September 2004, 16:38:20 UTC, committed by Anthony Baxter on 02 September 2004, 16:38:20 UTC
1 parent e13943a
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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