]> git.proxmox.com Git - mirror_edk2.git/blob - AppPkg/Applications/Python/Python-2.7.2/Python/getplatform.c
AppPkg/Applications/Python: Add Python 2.7.2 sources since the release of Python...
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Python / getplatform.c
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 }