summaryrefslogtreecommitdiff
path: root/user/include/sys/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'user/include/sys/types.h')
-rw-r--r--user/include/sys/types.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/user/include/sys/types.h b/user/include/sys/types.h
new file mode 100644
index 0000000..f1b3266
--- /dev/null
+++ b/user/include/sys/types.h
@@ -0,0 +1,15 @@
+/**
+ * @file types.h
+ *
+ * @author Freya Murphy <freya@freyacat.org>
+ *
+ * System types
+ */
+
+#ifndef _TYPES_H
+#define _TYPES_H
+
+typedef long int off_t;
+typedef unsigned short pid_t;
+
+#endif /* types.h */