mirror of
https://github.com/zeldaret/oot3d.git
synced 2026-09-26 13:33:22 -04:00
a87ddae432
* pull known Actor functions GLOBAL_ASMs into their cpp files * attempt to pull unidentified actor functions GLOBAL_ASMs into their corresponding source files by scanning the call-graph
13 lines
148 B
C++
13 lines
148 B
C++
#ifndef _STDDEF_H_
|
|
#define _STDDEF_H_
|
|
|
|
#ifdef __cplusplus
|
|
#define NULL 0
|
|
#else
|
|
#define NULL ((void*)0)
|
|
#endif
|
|
|
|
typedef unsigned int size_t;
|
|
|
|
#endif
|