diff options
Diffstat (limited to 'include/dirent.h')
-rw-r--r-- | include/dirent.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/dirent.h b/include/dirent.h index ef1c1bafc95..d91c2658527 100644 --- a/include/dirent.h +++ b/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__ */ |