Staging
v0.5.1
Revision b8f02b5a5f1d211d83d6cc2a40a9b798d8dcfee2 authored by Alexander Belopolsky on 29 April 2012, 22:16:46 UTC, committed by Alexander Belopolsky on 29 April 2012, 22:16:46 UTC
1 parent 407b3bd
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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