Staging
v0.8.1
Revision 11fc030b6f9294030f0baa15f3bd4e2293e260e4 authored by Benjamin Peterson on 05 December 2015, 19:45:17 UTC, committed by Benjamin Peterson on 05 December 2015, 19:45:17 UTC
1 parent 167910a
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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