
#ifndef	_SYS___STDLIB_H_
#define	_SYS___STDLIB_H_

#include <ansi_compat.h>

#ifndef _SIZE_T_
#define _SIZE_T_
typedef unsigned int    size_t;
#endif

#ifndef _WCHAR_T_
#define _WCHAR_T_
typedef unsigned int	wchar_t;
#endif

#ifndef NULL
#define NULL    0
#endif

#endif
