summaryrefslogtreecommitdiffstats
path: root/public/sdk/inc/posix/errno.h
diff options
context:
space:
mode:
Diffstat (limited to 'public/sdk/inc/posix/errno.h')
-rw-r--r--public/sdk/inc/posix/errno.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/public/sdk/inc/posix/errno.h b/public/sdk/inc/posix/errno.h
new file mode 100644
index 000000000..ca1801f66
--- /dev/null
+++ b/public/sdk/inc/posix/errno.h
@@ -0,0 +1,31 @@
+/*++
+
+Copyright (c) 1989-1996 Microsoft Corporation
+
+Module Name:
+
+ errno.h
+
+Abstract:
+
+ This module contains the implementation defined values for the POSIX error
+ number as described in section 2.5 of IEEE P1003.1/Draft 13.
+
+--*/
+
+#ifndef _ERRNO_
+#define _ERRNO_
+
+#include <sys/errno.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+extern int errno;
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _ERRNO_ */