Staging
v0.5.1
https://github.com/python/cpython
Revision bf64c0411fd54d81f1bc7a45b35c0a0557ac4899 authored by Andrew M. Kuchling on 13 September 2008, 02:09:15 UTC, committed by Andrew M. Kuchling on 13 September 2008, 02:09:15 UTC
1 parent 64fc6ae
Raw File
Tip revision: bf64c0411fd54d81f1bc7a45b35c0a0557ac4899 authored by Andrew M. Kuchling on 13 September 2008, 02:09:15 UTC
Remove extra 'the'; the following title includes it
Tip revision: bf64c04
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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