]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/osdefs.h
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.10 / PyMod-2.7.10 / Include / osdefs.h
diff --git a/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/osdefs.h b/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/osdefs.h
deleted file mode 100644 (file)
index e01bd49..0000000
+++ /dev/null
@@ -1,81 +0,0 @@
-/** @file\r
-  Operating system dependencies.\r
-\r
-  Copyright (c) 2015, Daryl McDaniel. All rights reserved.<BR>\r
-  Copyright (c) 2011 - 2012, Intel Corporation. All rights reserved.<BR>\r
-  This program and the accompanying materials are licensed and made available under\r
-  the terms and conditions of the BSD License that accompanies this distribution.\r
-  The full text of the license may be found at\r
-  http://opensource.org/licenses/bsd-license.\r
-\r
-  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
-**/\r
-\r
-#ifndef Py_OSDEFS_H\r
-#define Py_OSDEFS_H\r
-#ifdef __cplusplus\r
-extern "C" {\r
-#endif\r
-\r
-\r
-/* Mod by chrish: QNX has WATCOM, but isn't DOS */\r
-#if !defined(__QNX__) && !defined(UEFI_C_SOURCE)\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
-#define ALTSEP  '\\'\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
-# ifdef  UEFI_C_SOURCE\r
-#   define DELIM      ';'\r
-#   define DELIM_STR  ";"\r
-# else\r
-#   define DELIM      ':'\r
-# endif\r
-#endif\r
-\r
-#ifdef __cplusplus\r
-}\r
-#endif\r
-#endif /* !Py_OSDEFS_H */\r