From 0f4d1ce303f94a076df301363f61042907b7a90c Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sun, 2 Oct 2016 18:28:35 +0200 Subject: [PATCH] Add missing license headers (#233) --- libs/bump_allocator/src/lib.rs | 9 +++++++++ libs/hole_list_allocator/src/lib.rs | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/libs/bump_allocator/src/lib.rs b/libs/bump_allocator/src/lib.rs index 90ffe374..506d9975 100644 --- a/libs/bump_allocator/src/lib.rs +++ b/libs/bump_allocator/src/lib.rs @@ -1,3 +1,12 @@ +// Copyright 2016 Philipp Oppermann. See the README.md +// file at the top-level directory of this distribution. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + #![feature(const_fn)] #![feature(allocator)] diff --git a/libs/hole_list_allocator/src/lib.rs b/libs/hole_list_allocator/src/lib.rs index 332e11d4..edad9e96 100644 --- a/libs/hole_list_allocator/src/lib.rs +++ b/libs/hole_list_allocator/src/lib.rs @@ -1,3 +1,12 @@ +// Copyright 2016 Philipp Oppermann. See the README.md +// file at the top-level directory of this distribution. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + #![feature(allocator)] #![feature(const_fn)]