BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / commit / 18495cfe1cf5f7fc6f6b0c8c12d7f34dfded1be0 / include / sys / errno.h

// Related

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