You've already forked sm64coopdx
mirror of
https://github.com/izzy2lost/sm64coopdx.git
synced 2026-03-26 16:56:02 -07:00
11 lines
145 B
C
11 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
|