mirror of
https://gitlab.com/dk64_decomp/dk64.git
synced 2024-11-27 01:00:34 +00: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
|