]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/longobject.c
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 / longobject.c
index 2c367ac8e1a0ec76e131385b5c39dd1e3b6b1ff8..1745ce97378773cec0267226823b1436a10696f7 100644 (file)
@@ -1,4 +1,15 @@
-/* Long (arbitrary precision) integer object implementation */\r
+/** @file\r
+  Long (arbitrary precision) integer object implementation.\r
+\r
+  Copyright (c) 2015, Daryl McDaniel. 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
 /* XXX The functional organization of this file is terrible */\r
 \r
@@ -24,6 +35,7 @@
  */\r
 #define FIVEARY_CUTOFF 8\r
 \r
+#undef ABS\r
 #define ABS(x) ((x) < 0 ? -(x) : (x))\r
 \r
 #undef MIN\r