]> git.proxmox.com Git - mirror_edk2.git/blame - 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
CommitLineData
d11973f1
DM
1/** @file\r
2 Return the copyright string. This is updated manually.\r
3\r
4 Copyright (c) 2015, Daryl McDaniel. All rights reserved.<BR>\r
5 Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>\r
6 This program and the accompanying materials are licensed and made available under\r
7 the terms and conditions of the BSD License that accompanies this distribution.\r
8 The full text of the license may be found at\r
9 http://opensource.org/licenses/bsd-license.\r
10\r
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13**/\r
3ec97ca4
DM
14\r
15#include "Python.h"\r
16\r
d11973f1 17static char cprt[] =\r
3ec97ca4 18"\\r
d11973f1
DM
19Copyright (c) 2015 Daryl McDaniel.\n\\r
20All Rights Reserved.\n\\r
21\n\\r
22Copyright (c) 2010-2014 Intel Corporation.\n\\r
23All Rights Reserved.\n\\r
24\n\\r
3ec97ca4
DM
25Copyright (c) 2001-2015 Python Software Foundation.\n\\r
26All Rights Reserved.\n\\r
27\n\\r
28Copyright (c) 2000 BeOpen.com.\n\\r
29All Rights Reserved.\n\\r
30\n\\r
31Copyright (c) 1995-2001 Corporation for National Research Initiatives.\n\\r
32All Rights Reserved.\n\\r
33\n\\r
34Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam.\n\\r
35All Rights Reserved.";\r
36\r
37const char *\r
38Py_GetCopyright(void)\r
39{\r
d11973f1 40 return cprt;\r
3ec97ca4 41}\r