mirror of
https://github.com/n64decomp/mk64
synced 2026-05-25 07:03:01 -04:00
11 lines
147 B
C
11 lines
147 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
|