From 43ab8bd2f9c85305eb3f0891cf1c3a468ff1f428 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sun, 25 Feb 2007 11:30:46 +0000 Subject: [PATCH] Use common license header format (trivial). Signed-off-by: Uwe Hermann Acked-by: Uwe Hermann git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@116 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- lib/malloc.c | 16 +++++++++------- lib/mem.c | 6 ++++-- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/lib/malloc.c b/lib/malloc.c index 3285def076..d317e4cdca 100644 --- a/lib/malloc.c +++ b/lib/malloc.c @@ -1,11 +1,7 @@ /* - * malloc -- simple non-freeing malloc. - * there have been about a million versions of this but we need one with a known - * author. Almost every OS and bootloader has had this at some time or other. - * - * - * Copyright (C) 2007 Ronald G. Minnich + * This file is part of the LinuxBIOS project. * + * Copyright (C) 2007 Ronald G. Minnich * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -19,8 +15,14 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA - * */ + +/* + * Simple non-freeing malloc. There have been about a million versions of + * this but we need one with a known author. Almost every OS and bootloader + * has had this at some time or other. + */ + #include #include diff --git a/lib/mem.c b/lib/mem.c index afe3590bbb..43ff1baa8c 100644 --- a/lib/mem.c +++ b/lib/mem.c @@ -1,5 +1,5 @@ /* - * mem -- simple routines that have no optimizations for anything + * This file is part of the LinuxBIOS project. * * Copright (C) 2007 Ronald G. Minnich * @@ -15,8 +15,10 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA - * */ + +/* Simple memory routines that have no optimizations for anything. */ + #include /* this one is pretty stupid. Won't handle overlaps, it's not efficient, etc. */