Revision 9aefd695a93d412fbedca658d6d6887182fd4976 authored by Georg Brandl on 05 March 2011, 14:09:43 UTC, committed by Georg Brandl on 05 March 2011, 14:09:43 UTC
1 parent 547008b
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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