Staging
v0.8.1
Revision f82ba5bf55d80136db20bf5e65d577f3fec46c27 authored by Fred Drake on 01 April 2002, 23:29:02 UTC, committed by Fred Drake on 01 April 2002, 23:29:02 UTC
1 parent f063299
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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