summaryrefslogtreecommitdiff
path: root/include/stddef.h
blob: a80cafb3dce6db2ff9928459771bc9b3ea573019 (plain)
1
2
3
4
5
6
7
8
9
#ifndef _STDDEF_H
#define _STDDEF_H

#define NULL ((void*)0)
typedef unsigned long size_t;
typedef unsigned int wchar_t;
typedef unsigned int wint_t;

#endif /* _STDDEF_H_ */