summaryrefslogtreecommitdiff
path: root/include/malloc.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-06-23 08:45:09 -0400
committerTom Rini <trini@konsulko.com>2021-06-23 08:45:09 -0400
commit6fc0a2f76bc285dc4bc80f55452311385e6c3d57 (patch)
treeaa741bbc7cb8e0208b7e21c870fdc39f9ca99ae6 /include/malloc.h
parent1ce892cb1ce970d8ee6ffcecc22351c84e67fca4 (diff)
parentb2710faf82998d7be9e4eef554063a5e27e88ec9 (diff)
Merge branch '2021-06-22-assorted-fixes'
- Assorted minor bugfixes
Diffstat (limited to 'include/malloc.h')
-rw-r--r--include/malloc.h9
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?