Staging
v0.8.1
Revision fa5d6a5ff3ca247d9c2eaf51853ff39c98c09f4a authored by Stefan Krah on 29 January 2015, 13:27:23 UTC, committed by Stefan Krah on 29 January 2015, 13:27:23 UTC
1 parent 2934262
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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