mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-06-03 10:32:19 -04:00
11 lines
146 B
C
11 lines
146 B
C
#ifndef STDDEF_H
|
|
#define STDDEF_H
|
|
|
|
#include <libultra/types.h>
|
|
|
|
#ifndef offsetof
|
|
#define offsetof(st, m) ((size_t)&(((st *)0)->m))
|
|
#endif
|
|
|
|
#endif
|