1 /* Copyright (C) 1996 Robert de Bath <rdebath (at) cix.compulink.co.uk> 2 * This file is part of the Linux-8086 C library and is distributed 3 * under the GNU Library General Public License. 4 */ 5 /* We don't care, ignore GCC's __need hackery */ 6 7 #ifndef __STDDEF_H 8 #define __STDDEF_H 9 10 #include <sys/types.h> 11 12 #ifndef NULL 13 #define NULL ((void*)0) 14 #endif 15 16 #endif /* __STDDEF_H */ 17