summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2020-04-11 19:16:16 +0900
committerYuki Okushi <huyuumi.dev@gmail.com>2020-04-11 23:35:45 +0900
commit545c62f7d4cf9cca76719f7364ecfa8d891ab979 (patch)
treed6867bd5cad6f0988a7847ea82908ba74e26d5f4 /src
parent4c07b66112d555b325b66042725dff7e78fa8f3e (diff)
downloadrust-libc-545c62f7d4cf9cca76719f7364ecfa8d891ab979.tar.gz
Remove license headers
Diffstat (limited to 'src')
-rw-r--r--src/hermit/mod.rs10
-rw-r--r--src/lib.rs9
-rw-r--r--src/unix/hermit/mod.rs10
3 files changed, 0 insertions, 29 deletions
diff --git a/src/hermit/mod.rs b/src/hermit/mod.rs
index 9880b50723..bffcefdd89 100644
--- a/src/hermit/mod.rs
+++ b/src/hermit/mod.rs
@@ -1,13 +1,3 @@
-// Copyright 2018 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.
-
// libc port for HermitCore (https://hermitcore.org)
//
// Ported by Colin Fink <colin.finck@rwth-aachen.de>
diff --git a/src/lib.rs b/src/lib.rs
index d5fba02da2..171591ebf5 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,12 +1,3 @@
-// Copyright 2012-2015 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.
//! libc - Raw FFI bindings to platforms' system libraries
//!
//! [Documentation for other platforms][pd].
diff --git a/src/unix/hermit/mod.rs b/src/unix/hermit/mod.rs
index 83e064e71f..66ee653644 100644
--- a/src/unix/hermit/mod.rs
+++ b/src/unix/hermit/mod.rs
@@ -1,13 +1,3 @@
-// Copyright 2018 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.
-
// liblibc port for HermitCore (https://hermitcore.org)
// HermitCore is a unikernel based on lwIP, newlib, and
// pthread-embedded.