mirror of
https://github.com/zeldaret/ph
synced 2026-05-24 23:21:37 -04:00
38e9378f8f
* Make types compatible with dsd-ghidra typesync * Update actors.md * Update docs * Delink ActorShopItem.cpp
15 lines
223 B
C
15 lines
223 B
C
#ifndef _C_STDDEF_H
|
|
#define _C_STDDEF_H
|
|
|
|
#define NULL 0
|
|
|
|
#ifdef __MWERKS__
|
|
typedef unsigned long size_t;
|
|
#else
|
|
typedef unsigned int size_t;
|
|
#endif
|
|
|
|
#define offsetof(type, member) ((size_t) &((type *) NULL)->member)
|
|
|
|
#endif
|