Staging
v0.5.1
https://github.com/python/cpython
Revision c52b4ada4b4f6987b1de43f718aa19aa0e5805f8 authored by Anthony Baxter on 23 March 2006, 02:21:49 UTC, committed by Anthony Baxter on 23 March 2006, 02:21:49 UTC
1 parent e33da3b
Raw File
Tip revision: c52b4ada4b4f6987b1de43f718aa19aa0e5805f8 authored by Anthony Baxter on 23 March 2006, 02:21:49 UTC
update svn:ignore across the board
Tip revision: c52b4ad
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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