symbian-qemu-0.9.1-12/python-2.6.1/Python/getplatform.c
changeset 1 2fb8b9db1c86
equal deleted inserted replaced
0:ffa851df0825 1:2fb8b9db1c86
       
     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 }