mirror of
https://github.com/HackerN64/HackerOoT.git
synced 2026-01-21 10:37:37 -08:00
9 lines
102 B
C
9 lines
102 B
C
#ifndef _STDDEF_H_
|
|
#define _STDDEF_H_
|
|
|
|
#define NULL ((void*)0)
|
|
|
|
typedef unsigned long size_t;
|
|
|
|
#endif
|