Staging
v0.5.1
https://github.com/python/cpython
Revision 646fe59508e14650b2b16dd45f5f60305c895132 authored by Fred Drake on 05 November 2004, 04:24:24 UTC, committed by Fred Drake on 05 November 2004, 04:24:24 UTC
1 parent 0ab7093
Raw File
Tip revision: 646fe59508e14650b2b16dd45f5f60305c895132 authored by Fred Drake on 05 November 2004, 04:24:24 UTC
add encouragement to contribute without learning LaTeX
Tip revision: 646fe59
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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