aboutsummaryrefslogtreecommitdiff
path: root/src/arch/i386/include/stddef.h
blob: e4fc019c87ac6e38c3d01de9bbe9060caafa1d00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef I386_STDDEF_H
#define I386_STDDEF_H

typedef long ptrdiff_t;
typedef unsigned long size_t;
typedef long ssize_t;

typedef int wchar_t;
typedef unsigned int wint_t;

#define NULL ((void *)0)

#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)

#endif /* I386_STDDEF_H */