diff options
| author | fig02 <fig02srl@gmail.com> | 2025-04-23 19:31:49 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-23 19:31:49 -0400 |
| commit | de59ad3db71a7e1d0134fa8be0c047c4cb1efacd (patch) | |
| tree | 687a4e8c76366dcc2bca16cb159c9c64400ecaaa /src/libc64/malloc.c | |
| parent | 680ba667c71fb3df952345527726be20a9b40c93 (diff) | |
macros.h 1/?: `PRINTF` and `T` (#2509)
* create printf and translation headers
* non-overlays complete
* printf finished
* move T macro
* edit comment
* fix error
* fix bss
* remove is_64
* fix bss
Diffstat (limited to 'src/libc64/malloc.c')
| -rw-r--r-- | src/libc64/malloc.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/libc64/malloc.c b/src/libc64/malloc.c index f7a642ce9..545c86a62 100644 --- a/src/libc64/malloc.c +++ b/src/libc64/malloc.c @@ -1,7 +1,11 @@ #include "libc64/malloc.h" + +#include "libc64/os_malloc.h" +#include "printf.h" +#include "translation.h" #include "ultra64.h" + #include "macros.h" -#include "libc64/os_malloc.h" #define LOG_SEVERITY_NOLOG 0 #define LOG_SEVERITY_ERROR 2 |
