Staging
v0.5.1
Revision cd2070590286b52b7aebfb4ed4fe409ac759f94d authored by Benjamin Peterson on 29 May 2011, 21:50:27 UTC, committed by Benjamin Peterson on 29 May 2011, 21:50:27 UTC
1 parent 8c0c9d2
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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