Nucleus
Barry System headers (remove libc dependency) 18495cf (3 years, 2 months ago)
diff --git a/include/sys/errno.h b/include/sys/errno.h
new file mode 100644
index 0000000..ad17fc5
--- /dev/null
+++ b/include/sys/errno.h
@@ -0,0 +1,30 @@
+#ifndef _SYS_ERRNO_H
+#define _SYS_ERRNO_H
+
+enum {
+ ENONE,
+ EPERM,
+ ENOENT,
+ ESRCH,
+ EINVAL,
+ EBADF,
+ ENOEXEC,
+ EMFILE,
+ EFAULT,
+ EISDIR,
+ ENOTDIR,
+ EACCES,
+ ENODEV,
+ EEXIST,
+ ENXIO,
+ ENOTBLK,
+ ENOMEM,
+ ECHILD,
+ ENOTTY,
+ ELOOP,
+ ENAMETOOLONG,
+ EINTR,
+ ERANGE,
+};
+
+#endif