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