From a76303a0c4225e65ae50ab399ababc5ce4f25bf7 Mon Sep 17 00:00:00 2001 From: jsg <> Date: Sun, 3 Jul 2011 18:51:01 +0000 Subject: [PATCH] As pointed out by Richard Guenther our definition of NULL was incorrect for c++ compilers that aren't gcc (or pretend to be gcc like clang). ok miod@ --- src/include/dirent.h | 4 +++- src/include/locale.h | 4 +++- src/include/stddef.h | 4 +++- src/include/stdio.h | 4 +++- src/include/stdlib.h | 4 +++- src/include/string.h | 4 +++- src/include/time.h | 4 +++- src/include/unistd.h | 4 +++- src/include/wchar.h | 4 +++- 9 files changed, 27 insertions(+), 9 deletions(-) diff --git a/src/include/dirent.h b/src/include/dirent.h index ef1c1baf..d91c2658 100644 --- a/src/include/dirent.h +++ b/src/include/dirent.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dirent.h,v 1.21 2011/04/06 11:39:42 miod Exp $ */ +/* $OpenBSD: dirent.h,v 1.22 2011/07/03 18:51:01 jsg Exp $ */ /* $NetBSD: dirent.h,v 1.9 1995/03/26 20:13:37 jtc Exp $ */ /*- @@ -84,6 +84,8 @@ typedef struct _dirdesc { #ifndef NULL #ifdef __GNUG__ #define NULL __null +#elif defined(__cplusplus) +#define NULL 0L #else #define NULL ((void *)0) #endif /* __GNUG__ */ diff --git a/src/include/locale.h b/src/include/locale.h index dfff586a..80f82b65 100644 --- a/src/include/locale.h +++ b/src/include/locale.h @@ -1,4 +1,4 @@ -/* $OpenBSD: locale.h,v 1.7 2011/04/06 11:39:42 miod Exp $ */ +/* $OpenBSD: locale.h,v 1.8 2011/07/03 18:51:01 jsg Exp $ */ /* $NetBSD: locale.h,v 1.6 1994/10/26 00:56:02 cgd Exp $ */ /* @@ -59,6 +59,8 @@ struct lconv { #ifndef NULL #ifdef __GNUG__ #define NULL __null +#elif defined(__cplusplus) +#define NULL 0L #else #define NULL ((void *)0) #endif diff --git a/src/include/stddef.h b/src/include/stddef.h index 97c8e951..52b2b39d 100644 --- a/src/include/stddef.h +++ b/src/include/stddef.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stddef.h,v 1.11 2011/04/06 11:39:42 miod Exp $ */ +/* $OpenBSD: stddef.h,v 1.12 2011/07/03 18:51:01 jsg Exp $ */ /* $NetBSD: stddef.h,v 1.4 1994/10/26 00:56:26 cgd Exp $ */ /*- @@ -67,6 +67,8 @@ typedef __mbstate_t mbstate_t; #ifndef NULL #ifdef __GNUG__ #define NULL __null +#elif defined(__cplusplus) +#define NULL 0L #else #define NULL ((void *)0) #endif diff --git a/src/include/stdio.h b/src/include/stdio.h index aeb48f15..5304e552 100644 --- a/src/include/stdio.h +++ b/src/include/stdio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdio.h,v 1.39 2011/04/06 11:39:42 miod Exp $ */ +/* $OpenBSD: stdio.h,v 1.40 2011/07/03 18:51:01 jsg Exp $ */ /* $NetBSD: stdio.h,v 1.18 1996/04/25 18:29:21 jtc Exp $ */ /*- @@ -58,6 +58,8 @@ typedef __off_t off_t; #ifndef NULL #ifdef __GNUG__ #define NULL __null +#elif defined(__cplusplus) +#define NULL 0L #else #define NULL ((void *)0) #endif diff --git a/src/include/stdlib.h b/src/include/stdlib.h index da29a50f..bbd57544 100644 --- a/src/include/stdlib.h +++ b/src/include/stdlib.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdlib.h,v 1.48 2011/04/06 11:39:42 miod Exp $ */ +/* $OpenBSD: stdlib.h,v 1.49 2011/07/03 18:51:01 jsg Exp $ */ /* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */ /*- @@ -80,6 +80,8 @@ typedef struct { #ifndef NULL #ifdef __GNUG__ #define NULL __null +#elif defined(__cplusplus) +#define NULL 0L #else #define NULL ((void *)0) #endif diff --git a/src/include/string.h b/src/include/string.h index f3ae14e1..3e754a83 100644 --- a/src/include/string.h +++ b/src/include/string.h @@ -1,4 +1,4 @@ -/* $OpenBSD: string.h,v 1.21 2011/04/06 11:39:42 miod Exp $ */ +/* $OpenBSD: string.h,v 1.22 2011/07/03 18:51:01 jsg Exp $ */ /* $NetBSD: string.h,v 1.6 1994/10/26 00:56:30 cgd Exp $ */ /*- @@ -46,6 +46,8 @@ typedef __size_t size_t; #ifndef NULL #ifdef __GNUG__ #define NULL __null +#elif defined(__cplusplus) +#define NULL 0L #else #define NULL ((void *)0) #endif diff --git a/src/include/time.h b/src/include/time.h index eb6936d4..e17db219 100644 --- a/src/include/time.h +++ b/src/include/time.h @@ -1,4 +1,4 @@ -/* $OpenBSD: time.h,v 1.19 2011/04/06 11:39:42 miod Exp $ */ +/* $OpenBSD: time.h,v 1.20 2011/07/03 18:51:01 jsg Exp $ */ /* $NetBSD: time.h,v 1.9 1994/10/26 00:56:35 cgd Exp $ */ /* @@ -47,6 +47,8 @@ #ifndef NULL #ifdef __GNUG__ #define NULL __null +#elif defined(__cplusplus) +#define NULL 0L #else #define NULL ((void *)0) #endif diff --git a/src/include/unistd.h b/src/include/unistd.h index 4edcae76..92d91a79 100644 --- a/src/include/unistd.h +++ b/src/include/unistd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: unistd.h,v 1.63 2011/04/06 11:39:42 miod Exp $ */ +/* $OpenBSD: unistd.h,v 1.64 2011/07/03 18:51:01 jsg Exp $ */ /* $NetBSD: unistd.h,v 1.26.4.1 1996/05/28 02:31:51 mrg Exp $ */ /*- @@ -58,6 +58,8 @@ #ifndef NULL #ifdef __GNUG__ #define NULL __null +#elif defined(__cplusplus) +#define NULL 0L #else #define NULL ((void *)0) #endif diff --git a/src/include/wchar.h b/src/include/wchar.h index 23030ee7..b590b7a8 100644 --- a/src/include/wchar.h +++ b/src/include/wchar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: wchar.h,v 1.17 2011/06/01 16:39:07 millert Exp $ */ +/* $OpenBSD: wchar.h,v 1.18 2011/07/03 18:51:01 jsg Exp $ */ /* $NetBSD: wchar.h,v 1.16 2003/03/07 07:11:35 tshiozak Exp $ */ /*- @@ -65,6 +65,8 @@ #ifndef NULL #ifdef __GNUG__ #define NULL __null +#elif defined(__cplusplus) +#define NULL 0L #else #define NULL ((void *)0) #endif