Use common license header format (trivial).

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>



git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@116 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Uwe Hermann 2007-02-25 11:30:46 +00:00
parent 63d5fe147d
commit 43ab8bd2f9
2 changed files with 13 additions and 9 deletions

View file

@ -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 <rminnich@gmail.com>
*
* 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 <stdlib.h>
#include <console/console.h>

View file

@ -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 <rminnich@gmail.com>
*
@ -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 <arch/types.h>
/* this one is pretty stupid. Won't handle overlaps, it's not efficient, etc. */