mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
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:
parent
63d5fe147d
commit
43ab8bd2f9
2 changed files with 13 additions and 9 deletions
16
lib/malloc.c
16
lib/malloc.c
|
@ -1,11 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* malloc -- simple non-freeing malloc.
|
* This file is part of the LinuxBIOS project.
|
||||||
* 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
|
|
||||||
*
|
*
|
||||||
|
* Copyright (C) 2007 Ronald G. Minnich <rminnich@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* 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
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
|
* 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 <stdlib.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
|
|
||||||
|
|
|
@ -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>
|
* 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
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
|
* 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>
|
#include <arch/types.h>
|
||||||
|
|
||||||
/* this one is pretty stupid. Won't handle overlaps, it's not efficient, etc. */
|
/* this one is pretty stupid. Won't handle overlaps, it's not efficient, etc. */
|
||||||
|
|
Loading…
Add table
Reference in a new issue