mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-12-11 23:22:27 +00:00
14 lines
227 B
C
14 lines
227 B
C
|
/* SPDX-License-Identifier: MIT */
|
||
|
|
||
|
#ifndef HEAPBLOCK_H
|
||
|
#define HEAPBLOCK_H
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
void heapblock_init(void);
|
||
|
|
||
|
void *heapblock_alloc(size_t size);
|
||
|
void *heapblock_alloc_aligned(size_t size, size_t align);
|
||
|
|
||
|
#endif
|