summaryrefslogtreecommitdiffhomepage
path: root/include/GenericsLibrary/pstd.nhh
blob: 5df5232290e57af10ae84c60544ab8cdfea5db44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
// Official repository: https://github.com/nekernel-org/nectar

#pragma once

extern __nrt_palloc;

#define PALLOC_INVALID 0

let palloc(let type, let sz, let align := 0)
{
    return __nrt_palloc(type, sz, align);
}