1
0
mirror of https://github.com/switchbrew/libnx.git synced 2025-06-30 00:32:39 +02:00
libnx/nx/source/runtime/alloc.h

7 lines
155 B
C

#pragma once
#include "types.h"
void* __libnx_alloc(size_t size);
void* __libnx_aligned_alloc(size_t alignment, size_t size);
void __libnx_free(void* p);