1 
2 #ifndef __STDDEF_H__
3 #define __STDDEF_H__
4 
5 #ifndef NULL
6 #define NULL    ((void *)0)
7 #endif
8 
9 #endif /* __STDDEF_H__ */
10 
11