about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDouglas Creager <dcreager@github.com>2019-03-15 10:49:36 -0400
committerDouglas Creager <dcreager@github.com>2019-03-15 10:49:36 -0400
commit8b6c566b9d405268312b32059f2f4a1cd3c24dfc (patch)
tree5b32cd77589652e549c5ebbd54475fc803372060
parent32969e9f57a7fc472addd40eb0d0fb7e7b00888f (diff)
downloadrust-8b6c566b9d405268312b32059f2f4a1cd3c24dfc.tar.gz
rust-8b6c566b9d405268312b32059f2f4a1cd3c24dfc.zip
Remove copyright notices
-rw-r--r--src/test/run-make-fulldeps/redundant-libs/bar.c13
-rw-r--r--src/test/run-make-fulldeps/redundant-libs/baz.c10
-rw-r--r--src/test/run-make-fulldeps/redundant-libs/foo.c10
-rw-r--r--src/test/run-make-fulldeps/redundant-libs/main.rs10
4 files changed, 1 insertions, 42 deletions
diff --git a/src/test/run-make-fulldeps/redundant-libs/bar.c b/src/test/run-make-fulldeps/redundant-libs/bar.c
index 78ddeb454db..e4259998678 100644
--- a/src/test/run-make-fulldeps/redundant-libs/bar.c
+++ b/src/test/run-make-fulldeps/redundant-libs/bar.c
@@ -1,12 +1 @@
-// Copyright 2019 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
-void bar() {
-}
+void bar() {}
diff --git a/src/test/run-make-fulldeps/redundant-libs/baz.c b/src/test/run-make-fulldeps/redundant-libs/baz.c
index 4ec0e9adc67..a4e2c2b717f 100644
--- a/src/test/run-make-fulldeps/redundant-libs/baz.c
+++ b/src/test/run-make-fulldeps/redundant-libs/baz.c
@@ -1,13 +1,3 @@
-// Copyright 2019 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
 extern void foo1();
 extern void foo2();
 
diff --git a/src/test/run-make-fulldeps/redundant-libs/foo.c b/src/test/run-make-fulldeps/redundant-libs/foo.c
index d5b28210dff..339ee86c99e 100644
--- a/src/test/run-make-fulldeps/redundant-libs/foo.c
+++ b/src/test/run-make-fulldeps/redundant-libs/foo.c
@@ -1,12 +1,2 @@
-// Copyright 2019 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
 void foo1() {}
 void foo2() {}
diff --git a/src/test/run-make-fulldeps/redundant-libs/main.rs b/src/test/run-make-fulldeps/redundant-libs/main.rs
index aeae38f096e..90d185ff51d 100644
--- a/src/test/run-make-fulldeps/redundant-libs/main.rs
+++ b/src/test/run-make-fulldeps/redundant-libs/main.rs
@@ -1,13 +1,3 @@
-// Copyright 2019 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
 extern "C" {
     fn bar();
     fn baz();