added std libs

This commit is contained in:
bellard
2001-11-11 02:54:21 +00:00
parent 507a221f7e
commit b536ac3068
3 changed files with 31 additions and 4 deletions

9
stddef.h Normal file
View File

@ -0,0 +1,9 @@
#ifndef _STDDEF_H
#define _STDDEF_H
/* TCC include file */
#define NULL ((void *)0)
typedef unsigned int size_t;
#endif