source: python/vendor/current/Python/getplatform.c

Last change on this file was 2, checked in by Yuri Dario, 15 years ago

Initial import for vendor code.

  • Property svn:eol-style set to native
File size: 130 bytes
Line 
1
2#include "Python.h"
3
4#ifndef PLATFORM
5#define PLATFORM "unknown"
6#endif
7
8const char *
9Py_GetPlatform(void)
10{
11 return PLATFORM;
12}
Note: See TracBrowser for help on using the repository browser.