Staging
v0.8.1
Revision 9e927f156435884b1d95b3507357305c1590bd6c authored by Fred Drake on 10 November 2004, 15:49:25 UTC, committed by Fred Drake on 10 November 2004, 15:49:25 UTC
1 parent b194b5b
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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