mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-22 12:05:11 +00:00
10 lines
145 B
C
10 lines
145 B
C
#ifndef STDDEF_H
|
|
#define STDDEF_H
|
|
|
|
#include "PR/ultratypes.h"
|
|
|
|
#ifndef offsetof
|
|
#define offsetof(st, m) ((size_t)&(((st *)0)->m))
|
|
#endif
|
|
|
|
#endif
|