tccelf.c
[tinycc.git] / stddef.h
blob1a5408dd7e0300ee6a4c2c822f38d843dabea58d
1 #ifndef _STDDEF_H
2 #define _STDDEF_H
4 #define NULL ((void *)0)
5 typedef unsigned int size_t;
6 typedef int wchar_t;
7 typedef int ptrdiff_t;
8 #define offsetof(type, field) ((size_t) &((type *)0)->field)
10 /* need to do that because of glibc 2.1 bug (should have a way to test
11 presence of 'long long' without __GNUC__, or TCC should define
12 __GNUC__ ? */
13 #ifndef __int8_t_defined
14 #define __int8_t_defined
15 typedef char int8_t;
16 typedef short int int16_t;
17 typedef int int32_t;
18 typedef long long int int64_t;
19 #endif
21 #endif