]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Python/getcompiler.c
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Python / getcompiler.c
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Python/getcompiler.c b/AppPkg/Applications/Python/Python-2.7.2/Python/getcompiler.c
deleted file mode 100644 (file)
index 33a7639..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-\r
-/* Return the compiler identification, if possible. */\r
-\r
-#include "Python.h"\r
-\r
-#ifndef COMPILER\r
-\r
-#ifdef __GNUC__\r
-#define COMPILER "\n[GCC " __VERSION__ "]"\r
-#endif\r
-\r
-#endif /* !COMPILER */\r
-\r
-#ifndef COMPILER\r
-\r
-#ifdef __cplusplus\r
-#define COMPILER "[C++]"\r
-#else\r
-#define COMPILER "[C]"\r
-#endif\r
-\r
-#endif /* !COMPILER */\r
-\r
-const char *\r
-Py_GetCompiler(void)\r
-{\r
-       return COMPILER;\r
-}\r