mirror of
https://github.com/frida/tinycc
synced 2024-11-28 18:43:07 +03:00
10 lines
123 B
C
10 lines
123 B
C
|
#ifndef _STDDEF_H
|
||
|
#define _STDDEF_H
|
||
|
|
||
|
/* TCC include file */
|
||
|
#define NULL ((void *)0)
|
||
|
|
||
|
typedef unsigned int size_t;
|
||
|
|
||
|
#endif
|