Staging
v0.8.1
https://github.com/python/cpython
Revision 94505a7cc0a40f2b4a5256f27d8ab32266e6b0d4 authored by Fred Drake on 19 January 2005, 03:42:10 UTC, committed by Fred Drake on 19 January 2005, 03:42:10 UTC
(closes SF patch #1104868)
1 parent 623273e
Raw File
Tip revision: 94505a7cc0a40f2b4a5256f27d8ab32266e6b0d4 authored by Fred Drake on 19 January 2005, 03:42:10 UTC
fix a bunch of spelling errors
Tip revision: 94505a7
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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