Staging
v0.8.1
Revision fef7e94fa12f21c09997bd02809e677830966646 authored by Łukasz Langa on 10 September 2016, 04:47:46 UTC, committed by Łukasz Langa on 10 September 2016, 04:47:46 UTC
1 parent 9e3ef52
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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