From cee25e12b344b02f2057fcc64aed59fffd2c22bc Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 22 Mar 2026 17:26:51 +0100 Subject: [FEAT] Update std.nhh with accurate comments. Signed-off-by: Amlal El Mahrouss --- include/GenericsLibrary/std.nhh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/GenericsLibrary/std.nhh b/include/GenericsLibrary/std.nhh index bce8a1e..677586e 100644 --- a/include/GenericsLibrary/std.nhh +++ b/include/GenericsLibrary/std.nhh @@ -9,14 +9,14 @@ extern __nrt_alloc; extern __nrt_free; -//@ Parallel free +//@ Standard free let free_bytes(let ptr) { if (ptr := 0) return 0; return __nrt_free(ptr); } -//@ Parallel alloc (bytes) +//@ Standard alloc (bytes) let alloc_bytes(let type, let sz, let align := 0) { if (0 := align) return 0; -- cgit v1.2.3