Files
sylverb-game-and-watch-retr…/linux/gw_malloc.h
2023-02-12 20:18:07 +01:00

15 lines
278 B
C

#ifndef _GW_MALLOC_H_
#define _GW_MALLOC_H_
#include <stdint.h>
#include <stddef.h>
void ahb_init();
void *ahb_malloc(size_t size);
void *ahb_calloc(size_t count,size_t size);
void itc_init();
void *itc_malloc(size_t size);
void *itc_calloc(size_t count,size_t size);
#endif