aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
-rw-r--r--LICENSE6
-rw-r--r--check.c1
-rw-r--r--evaluate.c1
-rw-r--r--expand.c1
-rw-r--r--expression.c1
-rw-r--r--expression.h1
-rw-r--r--inline.c1
-rw-r--r--lib.c1
-rw-r--r--lib.h1
-rw-r--r--obfuscate.c1
-rw-r--r--parse.c1
-rw-r--r--parse.h1
-rw-r--r--pre-process.c1
-rw-r--r--scope.c1
-rw-r--r--scope.h1
-rw-r--r--show-parse.c1
-rw-r--r--symbol.c1
-rw-r--r--symbol.h1
-rw-r--r--test-lexing.c1
-rw-r--r--test-parsing.c1
-rw-r--r--token.h1
-rw-r--r--tokenize.c1
22 files changed, 24 insertions, 3 deletions
diff --git a/LICENSE b/LICENSE
index 99a12b5c..06440ff0 100644
--- a/LICENSE
+++ b/LICENSE
@@ -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
diff --git a/check.c b/check.c
index 70fa4f91..7c0ded18 100644
--- a/check.c
+++ b/check.c
@@ -4,6 +4,7 @@
* the results.
*
* Copyright (C) 2003 Transmeta Corp.
+ * 2003 Linus Torvalds
*
* Licensed under the Open Software License version 1.1
*/
diff --git a/evaluate.c b/evaluate.c
index 8e462394..23613afd 100644
--- a/evaluate.c
+++ b/evaluate.c
@@ -2,6 +2,7 @@
* sparse/evaluate.c
*
* Copyright (C) 2003 Transmeta Corp.
+ * 2003 Linus Torvalds
*
* Licensed under the Open Software License version 1.1
*
diff --git a/expand.c b/expand.c
index fa8f588c..46beeae4 100644
--- a/expand.c
+++ b/expand.c
@@ -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
*
diff --git a/inline.c b/inline.c
index a6dc64dd..21788528 100644
--- a/inline.c
+++ b/inline.c
@@ -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
*/
diff --git a/lib.c b/lib.c
index e89bc9be..72f7da5d 100644
--- a/lib.c
+++ b/lib.c
@@ -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
*/
diff --git a/lib.h b/lib.h
index ae1b4a92..5bad37f2 100644
--- a/lib.h
+++ b/lib.h
@@ -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
*/
diff --git a/parse.c b/parse.c
index b581833b..2195452f 100644
--- a/parse.c
+++ b/parse.c
@@ -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
*/
diff --git a/parse.h b/parse.h
index be4106f1..cfc6a08f 100644
--- a/parse.h
+++ b/parse.h
@@ -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
*/
diff --git a/scope.c b/scope.c
index e3fcb7ec..4df93e81 100644
--- a/scope.c
+++ b/scope.c
@@ -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
*/
diff --git a/scope.h b/scope.h
index 1dc3b184..61ab53bf 100644
--- a/scope.h
+++ b/scope.h
@@ -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
*
diff --git a/symbol.c b/symbol.c
index fac4de9c..c510e3af 100644
--- a/symbol.c
+++ b/symbol.c
@@ -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
*/
diff --git a/symbol.h b/symbol.h
index 408e36cf..90a0f733 100644
--- a/symbol.h
+++ b/symbol.h
@@ -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
*/
diff --git a/token.h b/token.h
index 6c7171d8..b9a699c8 100644
--- a/token.h
+++ b/token.h
@@ -6,6 +6,7 @@
* indefinitely.
*
* Copyright (C) 2003 Transmeta Corp.
+ * 2003 Linus Torvalds
*
* Licensed under the Open Software License version 1.1
*/
diff --git a/tokenize.c b/tokenize.c
index 4b80bc2f..baa23161 100644
--- a/tokenize.c
+++ b/tokenize.c
@@ -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
*/