summaryrefslogtreecommitdiffstats
path: root/usr/include/klibc/seek.h
diff options
context:
space:
mode:
Diffstat (limited to 'usr/include/klibc/seek.h')
-rw-r--r--usr/include/klibc/seek.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/usr/include/klibc/seek.h b/usr/include/klibc/seek.h
new file mode 100644
index 0000000..e8ffe25
--- /dev/null
+++ b/usr/include/klibc/seek.h
@@ -0,0 +1,14 @@
+/*
+ * klibc/seek.h
+ *
+ * SEEK constants - needed by stdio.h, fcntl.h, and unistd.h
+ */
+
+#ifndef _KLIBC_SEEK_H
+#define _KLIBC_SEEK_H
+
+#define SEEK_SET 0
+#define SEEK_CUR 1
+#define SEEK_END 2
+
+#endif /* _KLIBC_SEEK_H */