summaryrefslogtreecommitdiff
path: root/libc/include/errno.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc/include/errno.h')
-rw-r--r--libc/include/errno.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/libc/include/errno.h b/libc/include/errno.h
new file mode 100644
index 0000000..c8d2002
--- /dev/null
+++ b/libc/include/errno.h
@@ -0,0 +1,25 @@
+#ifndef __ERRNO_H
+#define __ERRNO_H
+
+#include <features.h>
+#include <linuxmt/errno.h>
+
+#ifdef __USE_BSD
+extern int sys_nerr;
+extern char *sys_errlist[];
+#endif
+#ifdef __USE_GNU
+extern int _sys_nerr;
+extern char *_sys_errlist[];
+#endif
+
+extern int errno;
+
+__BEGIN_DECLS
+
+extern void perror __P ((__const char* __s));
+extern char* strerror __P ((int __errno));
+
+__END_DECLS
+
+#endif