summaryrefslogtreecommitdiff
path: root/include/dirent.h
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>1999-09-17 13:13:47 +0000
committerMarc Espie <espie@cvs.openbsd.org>1999-09-17 13:13:47 +0000
commitba903d4dd684a871a55c21d616e2dcfab110e3c9 (patch)
treed148e1b9a1f4965b61455b435c4c504bcfa388a0 /include/dirent.h
parent418794422a4be5adcc1087a5a660eb20e35a3adf (diff)
Be thorough about NULL as __null for C++.
Diffstat (limited to 'include/dirent.h')
-rw-r--r--include/dirent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dirent.h b/include/dirent.h
index 89718362331..54291f535a1 100644
--- a/include/dirent.h
+++ b/include/dirent.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: dirent.h,v 1.5 1999/06/11 22:47:48 espie Exp $ */
+/* $OpenBSD: dirent.h,v 1.6 1999/09/17 13:13:46 espie Exp $ */
/* $NetBSD: dirent.h,v 1.9 1995/03/26 20:13:37 jtc Exp $ */
/*-
@@ -83,7 +83,7 @@ typedef struct _dirdesc {
#ifndef NULL
#ifdef __GNUG__
-#define NULL __null
+#define NULL __null
#else
#define NULL 0
#endif