mirror of
https://github.com/rui314/chibicc
synced 2024-11-25 23:59:36 +03:00
12 lines
183 B
C
12 lines
183 B
C
|
#ifndef __STDDEF_H
|
||
|
#define __STDDEF_H
|
||
|
|
||
|
#define NULL ((void *)0)
|
||
|
|
||
|
typedef unsigned long size_t;
|
||
|
typedef long ptrdiff_t;
|
||
|
typedef unsigned int wchar_t;
|
||
|
typedef long max_align_t;
|
||
|
|
||
|
#endif
|