aboutsummaryrefslogtreecommitdiff
path: root/src/arch/i386/include/stddef.h
blob: 4bf6b0a8670b8e418624c70518a13dfd0111acc6 (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 0

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

#endif /* I386_STDDEF_H */