OSDN Git Service

2002-06-21 Jeff Johnston <jjohnstn@redhat.com>
authorjjohnstn <jjohnstn>
Fri, 21 Jun 2002 15:26:45 +0000 (15:26 +0000)
committerjjohnstn <jjohnstn>
Fri, 21 Jun 2002 15:26:45 +0000 (15:26 +0000)
        * libc/include/errno.h: Protect from multiple inclusion.

newlib/ChangeLog
newlib/libc/include/errno.h

index e4df3ce..0af3c57 100644 (file)
@@ -1,3 +1,7 @@
+2002-06-21  Jeff Johnston  <jjohnstn@redhat.com>
+
+       * libc/include/errno.h: Protect from multiple inclusion.
+
 2002-06-21  Nick Clifton  <nickc@cambridge.redhat.com>
 
        * libc/sys/arm/swi.h (ADP_Stopped_RunTimeError): Set correct value.
index 8584a63..81eaef7 100644 (file)
@@ -1,3 +1,8 @@
+#ifndef __ERRNO_H__
+#define __ERRNO_H__
+
 typedef int error_t;
 
 #include <sys/errno.h>
+
+#endif /* !__ERRNO_H__ */