mirror of
https://github.com/zeldaret/oot-vc.git
synced 2026-09-26 05:31:58 -04:00
18 lines
233 B
C
18 lines
233 B
C
#ifndef _ALLOC_H
|
|
#define _ALLOC_H
|
|
|
|
#include "revolution/types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void* malloc(size_t) __attribute__((nothrow));
|
|
void free(void*) __attribute__((nothrow));
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|