#3340: document print/get_usage and print/get_version
[python.git] / Python / getplatform.c
blob68991402b5b0001cfbf52a9394baa3340f52fe88
2 #include "Python.h"
4 #ifndef PLATFORM
5 #define PLATFORM "unknown"
6 #endif
8 const char *
9 Py_GetPlatform(void)
11 return PLATFORM;