You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
133 B

31 years ago
31 years ago
31 years ago
  1. #include "Python.h"
  2. #ifndef PLATFORM
  3. #define PLATFORM "unknown"
  4. #endif
  5. const char *
  6. Py_GetPlatform(void)
  7. {
  8. return PLATFORM;
  9. }