Skip to content

Commit 94a1d48

Browse files
committed
Update dlmalloc to latest version
1 parent 8f1542e commit 94a1d48

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

mintlib/malloc.c

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,26 @@
77
#define LACKS_TIME_H /* time(0) calls malloc... */
88

99
/*
10-
This is a version (aka dlmalloc) of malloc/free/realloc written by
11-
Doug Lea and released to the public domain, as explained at
12-
http://creativecommons.org/publicdomain/zero/1.0/ Send questions,
13-
comments, complaints, performance data, etc to dl@cs.oswego.edu
10+
Copyright 2023 Doug Lea
11+
12+
Permission is hereby granted, free of charge, to any person obtaining
13+
a copy of this software and associated documentation files (the
14+
"Software"), to deal in the Software without restriction, including
15+
without limitation the rights to use, copy, modify, merge, publish,
16+
distribute, sublicense, and/or sell copies of the Software, and to
17+
permit persons to whom the Software is furnished to do so.
18+
19+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1426
1527
* Version 2.8.6 Wed Aug 29 06:57:58 2012 Doug Lea
16-
Note: There may be an updated version of this malloc obtainable at
17-
ftp://gee.cs.oswego.edu/pub/misc/malloc.c
18-
Check before installing!
28+
Re-licensed 25 Sep 2023 with MIT-0 replacing obsolete CC0
29+
See https://opensource.org/license/mit-0/
1930
2031
* Quickstart
2132

0 commit comments

Comments
 (0)