1
0
mirror of https://github.com/sm64pc/sm64pc.git synced 2025-04-08 21:15:38 +02:00
sm64pc/include/libc/stddef.h
2019-11-03 14:36:27 -05:00

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