[Glacier] Add buffer types for holding bytes and capabilities.

This commit is contained in:
Drew Galbraith 2023-10-24 12:35:37 -07:00
parent ca5361b847
commit d45f831b46
3 changed files with 67 additions and 0 deletions

View file

@ -5,4 +5,5 @@
[[nodiscard]] void* operator new[](uint64_t size) { return malloc(size); }
void operator delete(void*, uint64_t) {}
void operator delete[](void*) {}
void operator delete[](void*, uint64_t) {}