diff options
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/bigint.rs | 10 | ||||
| -rw-r--r-- | src/libstd/flatpipes.rs | 10 | ||||
| -rw-r--r-- | src/libstd/priority_queue.rs | 9 |
3 files changed, 29 insertions, 0 deletions
diff --git a/src/libstd/bigint.rs b/src/libstd/bigint.rs index 303129c2849..678565ee325 100644 --- a/src/libstd/bigint.rs +++ b/src/libstd/bigint.rs @@ -1,3 +1,13 @@ +// Copyright 2013 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. + /*! A Big integer (signed version: BigInt, unsigned version: BigUint). diff --git a/src/libstd/flatpipes.rs b/src/libstd/flatpipes.rs index 0607055db5c..534f1b7d479 100644 --- a/src/libstd/flatpipes.rs +++ b/src/libstd/flatpipes.rs @@ -1,3 +1,13 @@ +// Copyright 2013 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. + /*! Generic communication channels for things that can be represented as, diff --git a/src/libstd/priority_queue.rs b/src/libstd/priority_queue.rs index 4d341d737f6..b9c040de42a 100644 --- a/src/libstd/priority_queue.rs +++ b/src/libstd/priority_queue.rs @@ -1,3 +1,12 @@ +// Copyright 2013 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. //! A priority queue implemented with a binary heap |
