]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/getcopyright.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 / Python / getcopyright.c
index 314c5728bc233ae1223101bf4b7f692c1aea9a33..71279724db7c791a833c81fcdce9e80758afd6e5 100644 (file)
@@ -1,9 +1,27 @@
-/* Return the copyright string.  This is updated manually. */\r
+/** @file\r
+  Return the copyright string.  This is updated manually.\r
+\r
+  Copyright (c) 2015, Daryl McDaniel. All rights reserved.<BR>\r
+  Copyright (c) 2010 - 2014, 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
 #include "Python.h"\r
 \r
-static char cprt[] = \r
+static char cprt[] =\r
 "\\r
+Copyright (c) 2015 Daryl McDaniel.\n\\r
+All Rights Reserved.\n\\r
+\n\\r
+Copyright (c) 2010-2014 Intel Corporation.\n\\r
+All Rights Reserved.\n\\r
+\n\\r
 Copyright (c) 2001-2015 Python Software Foundation.\n\\r
 All Rights Reserved.\n\\r
 \n\\r
@@ -19,5 +37,5 @@ All Rights Reserved.";
 const char *\r
 Py_GetCopyright(void)\r
 {\r
-       return cprt;\r
+  return cprt;\r
 }\r