mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 04:27:44 +00:00
Kernel+LibC: Let's say that off_t is a ssize_t
This commit is contained in:
parent
45450c7edc
commit
1afbd8936a
2 changed files with 2 additions and 2 deletions
|
@ -320,7 +320,7 @@ struct sigaction {
|
||||||
|
|
||||||
#define OFF_T_MAX 2147483647
|
#define OFF_T_MAX 2147483647
|
||||||
|
|
||||||
typedef i32 off_t;
|
typedef ssize_t off_t;
|
||||||
typedef i64 time_t;
|
typedef i64 time_t;
|
||||||
|
|
||||||
struct utimbuf {
|
struct utimbuf {
|
||||||
|
|
|
@ -48,7 +48,7 @@ typedef int id_t;
|
||||||
typedef __WINT_TYPE__ wint_t;
|
typedef __WINT_TYPE__ wint_t;
|
||||||
|
|
||||||
typedef uint32_t ino_t;
|
typedef uint32_t ino_t;
|
||||||
typedef int32_t off_t;
|
typedef ssize_t off_t;
|
||||||
|
|
||||||
typedef uint32_t dev_t;
|
typedef uint32_t dev_t;
|
||||||
typedef uint16_t mode_t;
|
typedef uint16_t mode_t;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue