diff options
author | Heinrich Schuchardt | 2021-05-29 13:18:00 +0200 |
---|---|---|
committer | Tom Rini | 2021-06-23 08:45:03 -0400 |
commit | 5ad9220bf7b54d958627dd8a0475a44c5a238f0a (patch) | |
tree | 3d309b28366d1298c6737d5be9792f553cc61f64 /include/malloc.h | |
parent | 2600dd897ed247993670465a4c5acb23a57eab3e (diff) |
malloc: add SPDX license identifiers
The original code is in the public domain. Licenses/README states that the
general license for U-Boot is GPL 2.0+. So we can mark the malloc code as
GPL 2.0+ too.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/malloc.h')
-rw-r--r-- | include/malloc.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/malloc.h b/include/malloc.h index 024b18be00e..1fbaf3755c7 100644 --- a/include/malloc.h +++ b/include/malloc.h @@ -1,12 +1,13 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* - A version of malloc/free/realloc written by Doug Lea and released to the - public domain. Send questions/comments/complaints/performance data - to dl@cs.oswego.edu + This code is based on a version of malloc/free/realloc written by Doug Lea and + released to the public domain. Send questions/comments/complaints/performance + data to dl@cs.oswego.edu * VERSION 2.6.6 Sun Mar 5 19:10:03 2000 Doug Lea (dl at gee) Note: There may be an updated version of this malloc obtainable at - ftp://g.oswego.edu/pub/misc/malloc.c + http://g.oswego.edu/pub/misc/malloc.c Check before installing! * Why use this malloc? |