OLD | NEW |
---|---|
(Empty) | |
1 /* -*- c -*- | |
ulan
2015/06/16 10:55:49
Can we remove the C++ comments and unindent the te
Michael Hablich
2015/06/16 11:09:01
Done.
| |
2 ---------------------------------------------------------------- | |
3 | |
4 Notice that the following BSD-style license applies to this one | |
5 file (valgrind.h) only. The rest of Valgrind is licensed under the | |
6 terms of the GNU General Public License, version 2, unless | |
7 otherwise indicated. See the COPYING file in the source | |
8 distribution for details. | |
9 | |
10 ---------------------------------------------------------------- | |
11 | |
12 This file is part of Valgrind, a dynamic binary instrumentation | |
13 framework. | |
14 | |
15 Copyright (C) 2000-2010 Julian Seward. All rights reserved. | |
16 | |
17 Redistribution and use in source and binary forms, with or without | |
18 modification, are permitted provided that the following conditions | |
19 are met: | |
20 | |
21 1. Redistributions of source code must retain the above copyright | |
22 notice, this list of conditions and the following disclaimer. | |
23 | |
24 2. The origin of this software must not be misrepresented; you must | |
25 not claim that you wrote the original software. If you use this | |
26 software in a product, an acknowledgment in the product | |
27 documentation would be appreciated but is not required. | |
28 | |
29 3. Altered source versions must be plainly marked as such, and must | |
30 not be misrepresented as being the original software. | |
31 | |
32 4. The name of the author may not be used to endorse or promote | |
33 products derived from this software without specific prior written | |
34 permission. | |
35 | |
36 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS | |
37 OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | |
38 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
39 ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY | |
40 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
41 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE | |
42 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
43 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | |
44 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
45 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | |
46 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
47 | |
48 ---------------------------------------------------------------- | |
49 | |
50 Notice that the above BSD-style license applies to this one file | |
51 (valgrind.h) only. The entire rest of Valgrind is licensed under | |
52 the terms of the GNU General Public License, version 2. See the | |
53 COPYING file in the source distribution for details. | |
54 | |
55 ---------------------------------------------------------------- | |
56 */ | |
OLD | NEW |