1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:18:11 +00:00

Make VFS host build work again.

This commit is contained in:
Andreas Kling 2018-10-17 12:23:19 +02:00
parent 39fa1eb2c2
commit 7580ac576f
3 changed files with 5 additions and 2 deletions

View file

@ -18,13 +18,14 @@ typedef dword gid_t;
#ifdef SERENITY_KERNEL
// FIXME: Support 64-bit offsets!
typedef signed_dword off_t;
typedef unsigned int time_t;
#else
typedef signed_qword off_t;
typedef ::time_t time_t;
#endif
typedef dword blksize_t;
typedef dword blkcnt_t;
typedef unsigned int time_t;
typedef dword size_t;
typedef signed_dword ssize_t;