]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/stringlib/localeutil.h
AppPkg/.../Python-2.7.10: AppPkg.dsc, pyconfig.h, PyMod-2.7.10
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.10 / PyMod-2.7.10 / Objects / stringlib / localeutil.h
index 3ab7f559629e73ec5c451a528a735a9b0005042d..45c980c6a89a859b2430960be98b0b62899075ca 100644 (file)
@@ -1,10 +1,25 @@
-/* stringlib: locale related helpers implementation */\r
+/** @file\r
+    stringlib: locale related helpers implementation.\r
+\r
+    Copyright (c) 2011, 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 STRINGLIB_LOCALEUTIL_H\r
 #define STRINGLIB_LOCALEUTIL_H\r
 \r
 #include <locale.h>\r
 \r
+// Prevent conflicts with EFI\r
+#undef  MAX\r
+#undef  MIN\r
+\r
 #define MAX(x, y) ((x) < (y) ? (y) : (x))\r
 #define MIN(x, y) ((x) < (y) ? (x) : (y))\r
 \r