1
0
mirror of https://github.com/blawar/ooot.git synced 2024-06-25 22:09:34 +00:00
ooot/include/global.h
2022-04-13 17:00:41 -04:00

25 lines
457 B
C

#pragma once
#include <stddef.h>
#include <string.h>
#include "porting_defs.h"
#include "z64.h"
#ifdef __cplusplus
#define _LANGUAGE_C_PLUS_PLUS
#endif
#include "macros.h"
#include <stdarg.h>
void osSyncPrintf(const char* fmt, ...);
#if defined(_MSC_VER)
void bzero(void* __s, size_t __n);
void bcopy(void* __s, void* __d, size_t __n);
#endif
u64 osGetTime();
void oot_assert(const char* exp, const char* file, s32 line);
#include "z_debug_display.h"