mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-05-29 08:43:14 -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
|