mirror of
https://github.com/sylverb/game-and-watch-retro-go.git
synced 2026-01-12 08:29:29 +01:00
15 lines
278 B
C
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
|