harec

[hare] Hare compiler, written in C11 for POSIX OSs
Log | Files | Refs | README | LICENSE

commit 38c2198973ec0c2f56b9108a4ab0029a6671fdd9
parent fba0a9b547a3462d65a45ec93f78a07da58beabf
Author: Sebastian <sebastian@sebsite.pw>
Date:   Fri,  6 May 2022 22:46:47 -0400

rt: fix hyperlink syntax in doc comment

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mrt/malloc.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rt/malloc.ha b/rt/malloc.ha @@ -112,7 +112,7 @@ fn list_from_block(s: size, p: uintptr) nullable *void = { return (p + WASTE: uintptr + WORD: uintptr): *void; }; -// Frees a pointer previously allocated with [malloc]. +// Frees a pointer previously allocated with [[malloc]]. export @symbol("rt.free") fn free_(_p: nullable *void) void = { if (_p != null) { nfree += 1;