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. */