Mario Kart 64
Loading...
Searching...
No Matches
stddef.h
Go to the documentation of this file.
1#ifndef STDDEF_H
2#define STDDEF_H
3
4#ifndef TARGET_N64
5#include <libultra/types.h>
6#else
7#include <PR/ultratypes.h>
8#endif
9
10#ifndef offsetof
11#define offsetof(st, m) ((size_t) & (((st*) 0)->m))
12#endif
13
14#endif