feat: simple read/write lock implementation
[lunaix-os.git] / lunaix-os / includes / lunaix / types.h
index e91025ad920f8641346d0eae509f6cf5f906a52f..fbe7e1e33880dd539f92c8ccb576214478bb7417 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef __LUNAIX_TYPES_H
 #define __LUNAIX_TYPES_H
 
+#include <stdarg.h>
+#include <stddef.h>
 #include <stdint.h>
 
 #define PEXITTERM 0x100
@@ -20,5 +22,6 @@
 // TODO: WTERMSIG
 
 typedef int32_t pid_t;
+typedef int64_t lba_t;
 
 #endif /* __LUNAIX_TYPES_H */