aboutsummaryrefslogtreecommitdiff
path: root/util/mkelfImage/kunzip_src/arch/i386/include/stddef.h
blob: 88a3b489574f8017cdff322e8412257c92f09d67 (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