Staging
v0.5.1
https://github.com/python/cpython
Revision 73cdff47b2ff80e38da49bb42e68646ae1d4f190 authored by Anthony Baxter on 23 March 2006, 02:49:35 UTC, committed by Anthony Baxter on 23 March 2006, 02:49:35 UTC
1 parent e311fdc
Raw File
Tip revision: 73cdff47b2ff80e38da49bb42e68646ae1d4f190 authored by Anthony Baxter on 23 March 2006, 02:49:35 UTC
take 3
Tip revision: 73cdff4
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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