aboutsummaryrefslogtreecommitdiff
path: root/src/lj_alloc.c
diff options
context:
space:
mode:
authorMike Pall <mike>2020-10-12 16:11:32 +0200
committerMike Pall <mike>2020-10-12 16:11:32 +0200
commit050466552bf7eb8b7944aa52c93b45326ae14d7a (patch)
treef92ad9dd6963ffc3168ea46bed892894adcc7339 /src/lj_alloc.c
parent5c46f47736f7609be407c88d531ecd1689d40a79 (diff)
downloadluajit-050466552bf7eb8b7944aa52c93b45326ae14d7a.tar.gz
luajit-050466552bf7eb8b7944aa52c93b45326ae14d7a.tar.bz2
luajit-050466552bf7eb8b7944aa52c93b45326ae14d7a.zip
Minor changes and https-ify links.
Diffstat (limited to 'src/lj_alloc.c')
-rw-r--r--src/lj_alloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lj_alloc.c b/src/lj_alloc.c
index dc64dca9..9adaa0e5 100644
--- a/src/lj_alloc.c
+++ b/src/lj_alloc.c
@@ -6,7 +6,7 @@
6** 6**
7** This is a version (aka dlmalloc) of malloc/free/realloc written by 7** This is a version (aka dlmalloc) of malloc/free/realloc written by
8** Doug Lea and released to the public domain, as explained at 8** Doug Lea and released to the public domain, as explained at
9** http://creativecommons.org/licenses/publicdomain. 9** https://creativecommons.org/licenses/publicdomain.
10** 10**
11** * Version pre-2.8.4 Wed Mar 29 19:46:29 2006 (dl at gee) 11** * Version pre-2.8.4 Wed Mar 29 19:46:29 2006 (dl at gee)
12** 12**
@@ -16,8 +16,8 @@
16** If you want to use dlmalloc in another project, you should get 16** If you want to use dlmalloc in another project, you should get
17** the original from: ftp://gee.cs.oswego.edu/pub/misc/ 17** the original from: ftp://gee.cs.oswego.edu/pub/misc/
18** For thread-safe derivatives, take a look at: 18** For thread-safe derivatives, take a look at:
19** - ptmalloc: http://www.malloc.de/ 19** - ptmalloc: https://www.malloc.de/
20** - nedmalloc: http://www.nedprod.com/programs/portable/nedmalloc/ 20** - nedmalloc: https://www.nedprod.com/programs/portable/nedmalloc/
21*/ 21*/
22 22
23#define lj_alloc_c 23#define lj_alloc_c