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