source:
vendor/python/2.5/Python/getplatform.c
Last change on this file was 3225, checked in by , 18 years ago | |
---|---|
File size: 130 bytes |
Line | |
---|---|
1 | |
2 | #include "Python.h" |
3 | |
4 | #ifndef PLATFORM |
5 | #define PLATFORM "unknown" |
6 | #endif |
7 | |
8 | const char * |
9 | Py_GetPlatform(void) |
10 | { |
11 | return PLATFORM; |
12 | } |
Note:
See TracBrowser
for help on using the repository browser.