#ifndef __LUNAIX_TYPES_H
#define __LUNAIX_TYPES_H
+#include <lunaix/compiler.h>
#include <stdarg.h>
-#include <stdint.h>
-#include <usr/sys/types.h>
+#include <stddef.h>
+#include <usr/lunaix/types.h>
#define PACKED __attribute__((packed))
typedef unsigned long long u64_t;
typedef unsigned long ptr_t;
-typedef int64_t lba_t;
+typedef signed long ssize_t;
+typedef int pid_t;
+typedef unsigned long size_t;
+typedef unsigned long off_t;
+
+typedef unsigned int cpu_t;
+
+typedef u64_t lba_t;
#endif /* __LUNAIX_TYPES_H */