mirror of
git://repo.or.cz/tinycc.git
synced 2026-06-17 23:54:16 +08:00
10 lines
143 B
C
10 lines
143 B
C
#ifndef _STDDEF_H
|
|
#define _STDDEF_H
|
|
|
|
/* TCC include file */
|
|
#define NULL ((void *)0)
|
|
typedef unsigned int size_t;
|
|
typedef int wchar_t;
|
|
|
|
#endif
|