mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
7 lines
155 B
C
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);
|