Staging
v0.8.1
Revision 5b4a54c5d5a61375b663b25f2c99ea44219fc793 authored by Raymond Hettinger on 09 June 2009, 21:07:46 UTC, committed by Raymond Hettinger on 09 June 2009, 21:07:46 UTC
1 parent 662bad8
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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