]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.10/Include/osdefs.h
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.10 / Include / osdefs.h
diff --git a/AppPkg/Applications/Python/Python-2.7.10/Include/osdefs.h b/AppPkg/Applications/Python/Python-2.7.10/Include/osdefs.h
deleted file mode 100644 (file)
index d41ea14..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-#ifndef Py_OSDEFS_H\r
-#define Py_OSDEFS_H\r
-#ifdef __cplusplus\r
-extern "C" {\r
-#endif\r
-\r
-\r
-/* Operating system dependencies */\r
-\r
-/* Mod by chrish: QNX has WATCOM, but isn't DOS */\r
-#if !defined(__QNX__)\r
-#if defined(MS_WINDOWS) || defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__DJGPP__) || defined(PYOS_OS2)\r
-#if defined(PYOS_OS2) && defined(PYCC_GCC)\r
-#define MAXPATHLEN 260\r
-#define SEP '/'\r
-#define ALTSEP '\\'\r
-#else\r
-#define SEP '\\'\r
-#define ALTSEP '/'\r
-#define MAXPATHLEN 256\r
-#endif\r
-#define DELIM ';'\r
-#endif\r
-#endif\r
-\r
-#ifdef RISCOS\r
-#define SEP '.'\r
-#define MAXPATHLEN 256\r
-#define DELIM ','\r
-#endif\r
-\r
-\r
-/* Filename separator */\r
-#ifndef SEP\r
-#define SEP '/'\r
-#endif\r
-\r
-/* Max pathname length */\r
-#ifdef __hpux\r
-#include <sys/param.h>\r
-#include <limits.h>\r
-#ifndef PATH_MAX\r
-#define PATH_MAX MAXPATHLEN\r
-#endif\r
-#endif\r
-\r
-#ifndef MAXPATHLEN\r
-#if defined(PATH_MAX) && PATH_MAX > 1024\r
-#define MAXPATHLEN PATH_MAX\r
-#else\r
-#define MAXPATHLEN 1024\r
-#endif\r
-#endif\r
-\r
-/* Search path entry delimiter */\r
-#ifndef DELIM\r
-#define DELIM ':'\r
-#endif\r
-\r
-#ifdef __cplusplus\r
-}\r
-#endif\r
-#endif /* !Py_OSDEFS_H */\r