summaryrefslogtreecommitdiffstats
path: root/sys/errno.h
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2024-03-19 13:03:52 -0400
committerJon Santmyer <jon@jonsantmyer.com>2024-03-19 13:03:52 -0400
commitf004c1ade8d617a82cea2fe249434cccb47a2358 (patch)
tree34571e76039cf2ee2fee93c3f1bdb1bc6d2de5f6 /sys/errno.h
parentdd5d9e1d48396cbc226ff14fe557a55613c91fcb (diff)
downloadjove-kernel-f004c1ade8d617a82cea2fe249434cccb47a2358.tar.gz
jove-kernel-f004c1ade8d617a82cea2fe249434cccb47a2358.tar.bz2
jove-kernel-f004c1ade8d617a82cea2fe249434cccb47a2358.zip
rename abi to sys. better memory allocation
Diffstat (limited to 'sys/errno.h')
-rw-r--r--sys/errno.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/errno.h b/sys/errno.h
new file mode 100644
index 0000000..8d0c980
--- /dev/null
+++ b/sys/errno.h
@@ -0,0 +1,10 @@
+#ifndef _SYS_ERRNO_H
+#define _SYS_ERRNO_H 1
+
+#define ENOPERM 1
+#define EFAULT 2
+#define EINVAL 3
+#define ENOSYS 4
+#define ENOTFOUND 5
+
+#endif