From 14452ff798b09b3f1615769041369c04219c49ed Mon Sep 17 00:00:00 2001
From: Mike Frysinger <vapier@gentoo.org>
Date: Wed, 21 Feb 2007 16:14:11 +0000
Subject: add missing file for previous commit as pointed out by Peter
 Kjellerstedt

---
 libc/misc/internals/internal_errno.h | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 libc/misc/internals/internal_errno.h

(limited to 'libc')

diff --git a/libc/misc/internals/internal_errno.h b/libc/misc/internals/internal_errno.h
new file mode 100644
index 000000000..c46e07eef
--- /dev/null
+++ b/libc/misc/internals/internal_errno.h
@@ -0,0 +1,21 @@
+/*
+ *
+ */
+
+#include <features.h>
+#include <errno.h>
+#include <netdb.h>
+
+#undef errno
+#undef h_errno
+
+#ifdef __UCLIBC_HAS_THREADS__
+# define errno __uclibc_errno
+# define h_errno __uclibc_h_errno
+#endif
+
+extern int h_errno;
+libc_hidden_proto(h_errno)
+
+extern int errno;
+libc_hidden_proto(errno)
-- 
cgit v1.2.3