Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2002-06-21 19:26:47 +0400
committerJeff Johnston <jjohnstn@redhat.com>2002-06-21 19:26:47 +0400
commit4a2bfab76e299a64173ca43af0189cf690e08c51 (patch)
tree716feb11d3327f32ec13526be6cd5bba11f94aa4 /newlib/libc
parent1a7cb557b0cee5b06be408cd3921f79d4a6e64e5 (diff)
2002-06-21 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/errno.h: Protect from multiple inclusion.
Diffstat (limited to 'newlib/libc')
-rw-r--r--newlib/libc/include/errno.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/newlib/libc/include/errno.h b/newlib/libc/include/errno.h
index 8584a639b..81eaef710 100644
--- a/newlib/libc/include/errno.h
+++ b/newlib/libc/include/errno.h
@@ -1,3 +1,8 @@
+#ifndef __ERRNO_H__
+#define __ERRNO_H__
+
typedef int error_t;
#include <sys/errno.h>
+
+#endif /* !__ERRNO_H__ */