OSDN Git Service

* libc/include/dirent.h: Protect against multiple inclusion.
authorcgf <cgf>
Fri, 30 Nov 2001 17:26:45 +0000 (17:26 +0000)
committercgf <cgf>
Fri, 30 Nov 2001 17:26:45 +0000 (17:26 +0000)
newlib/ChangeLog
newlib/libc/include/dirent.h

index a314e13..3e1a059 100644 (file)
@@ -1,3 +1,7 @@
+2001-11-29  Christopher Faylor  <cgf@redhat.com>
+
+       * libc/include/dirent.h: Protect against multiple inclusion.
+
 2001-11-27  Christopher Faylor  <cgf@redhat.com>
 
        * libc/include/sys/types.h: Define useconds_t.
index 9e33a0d..6fefc03 100644 (file)
@@ -1,3 +1,5 @@
+#ifndef _DIRENT_H_
+#define _DIRENT_H_
 #ifdef __cplusplus
 extern "C" {
 #endif
@@ -10,3 +12,4 @@ extern "C" {
 #ifdef __cplusplus
 }
 #endif
+#endif /*_DIRENT_H_*/