diff options
| -rw-r--r-- | LICENSE | 6 | ||||
| -rw-r--r-- | check.c | 1 | ||||
| -rw-r--r-- | evaluate.c | 1 | ||||
| -rw-r--r-- | expand.c | 1 | ||||
| -rw-r--r-- | expression.c | 1 | ||||
| -rw-r--r-- | expression.h | 1 | ||||
| -rw-r--r-- | inline.c | 1 | ||||
| -rw-r--r-- | lib.c | 1 | ||||
| -rw-r--r-- | lib.h | 1 | ||||
| -rw-r--r-- | obfuscate.c | 1 | ||||
| -rw-r--r-- | parse.c | 1 | ||||
| -rw-r--r-- | parse.h | 1 | ||||
| -rw-r--r-- | pre-process.c | 1 | ||||
| -rw-r--r-- | scope.c | 1 | ||||
| -rw-r--r-- | scope.h | 1 | ||||
| -rw-r--r-- | show-parse.c | 1 | ||||
| -rw-r--r-- | symbol.c | 1 | ||||
| -rw-r--r-- | symbol.h | 1 | ||||
| -rw-r--r-- | test-lexing.c | 1 | ||||
| -rw-r--r-- | test-parsing.c | 1 | ||||
| -rw-r--r-- | token.h | 1 | ||||
| -rw-r--r-- | tokenize.c | 1 |
22 files changed, 24 insertions, 3 deletions
@@ -1,8 +1,8 @@ The 'sparse' C parser front-end library is copyrighted by Transmeta Corp -and licensed under the "Open Software License v1.1" as obtained from -www.opensource.org (and included here-in for easy reference) (that -license itself is copyrighted by Larry Rosen). +and other authors and licensed under the "Open Software License v1.1" as +obtained from www.opensource.org (and included here-in for easy +reference) (that license itself is copyrighted by Larry Rosen). Note that the "Original Work" that this license covers is only the front-end library itself, ie the code required to parse the source file @@ -4,6 +4,7 @@ * the results. * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 */ @@ -2,6 +2,7 @@ * sparse/evaluate.c * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 * @@ -2,6 +2,7 @@ * sparse/expand.c * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 * diff --git a/expression.c b/expression.c index aba7a0f3..90a006af 100644 --- a/expression.c +++ b/expression.c @@ -2,6 +2,7 @@ * sparse/expression.c * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 * diff --git a/expression.h b/expression.h index b2fc4828..12b5ffdc 100644 --- a/expression.h +++ b/expression.h @@ -4,6 +4,7 @@ * sparse/expression.h * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 * @@ -2,6 +2,7 @@ * Sparse - a semantic source parser. * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 */ @@ -2,6 +2,7 @@ * 'sparse' library helper routines. * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 */ @@ -4,6 +4,7 @@ * Basic helper routine descriptions for 'sparse'. * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 */ diff --git a/obfuscate.c b/obfuscate.c index 203fcb43..06486f1e 100644 --- a/obfuscate.c +++ b/obfuscate.c @@ -4,6 +4,7 @@ * the results. * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 */ @@ -4,6 +4,7 @@ * Let's see how hard this is to do. * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 */ @@ -4,6 +4,7 @@ * Basic parsing data structures. Statements and symbols. * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 */ diff --git a/pre-process.c b/pre-process.c index 1eda9688..adaadb55 100644 --- a/pre-process.c +++ b/pre-process.c @@ -5,6 +5,7 @@ * This may not be the smartest preprocessor on the planet. * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 */ @@ -4,6 +4,7 @@ * This is pretty trivial. * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 */ @@ -4,6 +4,7 @@ * Symbol scoping is pretty simple. * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 */ diff --git a/show-parse.c b/show-parse.c index bb98f83b..75501eca 100644 --- a/show-parse.c +++ b/show-parse.c @@ -2,6 +2,7 @@ * sparse/show-parse.c * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 * @@ -2,6 +2,7 @@ * Symbol lookup and handling. * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 */ @@ -4,6 +4,7 @@ * Basic symbol and namespace definitions. * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 */ diff --git a/test-lexing.c b/test-lexing.c index 3ad9aef6..b9af6df7 100644 --- a/test-lexing.c +++ b/test-lexing.c @@ -3,6 +3,7 @@ * preprocessing phases, and prints out the results. * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 */ diff --git a/test-parsing.c b/test-parsing.c index f63be073..7d5b5ec6 100644 --- a/test-parsing.c +++ b/test-parsing.c @@ -4,6 +4,7 @@ * the results. * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 */ @@ -6,6 +6,7 @@ * indefinitely. * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 */ @@ -3,6 +3,7 @@ * files or anything complex at all. That's the pre-processor. * * Copyright (C) 2003 Transmeta Corp. + * 2003 Linus Torvalds * * Licensed under the Open Software License version 1.1 */ |
