Staging
v0.5.1
Revision d9bed99fcb744c3bb5a0d027462a667dceac9795 authored by Stefan Krah on 21 January 2014, 21:58:40 UTC, committed by Stefan Krah on 21 January 2014, 21:58:40 UTC
1 parent 1b94030
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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