1
0
mirror of https://github.com/blawar/ooot.git synced 2024-07-04 18:13:37 +00:00
ooot/include/global.h

26 lines
458 B
C
Raw Normal View History

2021-12-27 19:23:03 +00:00
#pragma once
#include <stddef.h>
#include <string.h>
2021-12-27 19:23:03 +00:00
#include "porting_defs.h"
#include "z64.h"
#ifdef __cplusplus
#define _LANGUAGE_C_PLUS_PLUS
#endif
2020-03-17 04:31:30 +00:00
#include "macros.h"
2021-12-27 19:23:03 +00:00
#include <stdarg.h>
void osSyncPrintf(const char* fmt, ...);
#if defined(_MSC_VER)
2021-12-27 19:23:03 +00:00
void bzero(void* __s, size_t __n);
void bcopy(void* __s, void* __d, size_t __n);
2020-03-17 04:31:30 +00:00
#endif
2021-12-27 19:23:03 +00:00
u64 osGetTime();
void oot_assert(const char* exp, const char* file, s32 line);
2021-12-27 19:23:03 +00:00
#include "z_debug_display.h"