=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/include/string.h,v retrieving revision 1.30 retrieving revision 1.31 diff -c -r1.30 -r1.31 *** src/include/string.h 2015/11/20 23:40:32 1.30 --- src/include/string.h 2016/09/09 18:12:37 1.31 *************** *** 1,4 **** ! /* $OpenBSD: string.h,v 1.30 2015/11/20 23:40:32 millert Exp $ */ /* $NetBSD: string.h,v 1.6 1994/10/26 00:56:30 cgd Exp $ */ /*- --- 1,4 ---- ! /* $OpenBSD: string.h,v 1.31 2016/09/09 18:12:37 millert Exp $ */ /* $NetBSD: string.h,v 1.6 1994/10/26 00:56:30 cgd Exp $ */ /*- *************** *** 36,41 **** --- 36,42 ---- #define _STRING_H_ #include + #include #include /* *************** *** 49,64 **** #ifndef _SIZE_T_DEFINED_ #define _SIZE_T_DEFINED_ typedef __size_t size_t; - #endif - - #ifndef NULL - #ifdef __GNUG__ - #define NULL __null - #elif defined(__cplusplus) - #define NULL 0L - #else - #define NULL ((void *)0) - #endif #endif __BEGIN_DECLS --- 50,55 ----