Staging
v0.5.1
https://github.com/python/cpython
Revision 619f16e1941c33687744d490da13d2372601bb30 authored by Antoine Pitrou on 09 June 2010, 16:24:00 UTC, committed by Antoine Pitrou on 09 June 2010, 16:24:00 UTC
1 parent ae1bb9a
Raw File
Tip revision: 619f16e1941c33687744d490da13d2372601bb30 authored by Antoine Pitrou on 09 June 2010, 16:24:00 UTC
Issue #8930: fix some C code indentation
Tip revision: 619f16e
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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