NeKernel dev
Loading...
Searching...
No Matches
New.h
Go to the documentation of this file.
1
2/* ========================================
3
4 Copyright (C) 2024-2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.
5
6======================================== */
7
8#pragma once
9
10#include <KernelKit/HeapMgr.h>
11
13typedef __SIZE_TYPE__ size_t;
14
15void* operator new(size_t);
16void* operator new[](size_t);
17
18void operator delete(void*);
19void operator delete(void*, unsigned long);
20void operator delete[](void*);
: Memory allocation support for the NeKernel.
__SIZE_TYPE__ size_t
Definition New.h:13