mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-12 04:57:06 -04:00
ba08966f58
* clean up MSL_C files according to prime decomp * remove asm
19 lines
207 B
C
19 lines
207 B
C
#ifndef _STDDEF_H_
|
|
#define _STDDEF_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef unsigned long size_t;
|
|
typedef long ptrdiff_t;
|
|
|
|
#ifndef NULL
|
|
#define NULL (0)
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |