Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MorsGames
GitHub Repository: MorsGames/sm64plus
Path: blob/master/include/libc/stddef.h
7857 views
1
#ifndef STDDEF_H
2
#define STDDEF_H
3
4
#include "PR/ultratypes.h"
5
6
#ifndef offsetof
7
#define offsetof(st, m) ((size_t)&(((st *)0)->m))
8
#endif
9
10
#endif
11
12