mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-29 12:04:29 +00:00
c8f4d66b00
* Mostly document fault and fault_drawer * FaultDrawer printf functions return s32 * Review Suggestions for comments Co-authored-by: EllipticEllipsis <73679967+EllipticEllipsis@users.noreply.github.com> * Some further review suggestions * Further changes from suggestions * Fix Fault_AddClient doc comment * Bug comment for memdump overrun, add more to Fault_PadCallback bug comment * mb -> MB, comment about bss above externs * Fix color codes Co-authored-by: EllipticEllipsis <73679967+EllipticEllipsis@users.noreply.github.com>
10 lines
131 B
C
10 lines
131 B
C
#ifndef STDDEF_H
|
|
#define STDDEF_H
|
|
|
|
#define NULL ((void*)0)
|
|
|
|
typedef unsigned long size_t;
|
|
|
|
typedef unsigned int uintptr_t;
|
|
|
|
#endif
|