Skip to content

Commit

Permalink
types: fixed off_t
Browse files Browse the repository at this point in the history
  • Loading branch information
jewelcodes committed Sep 25, 2024
1 parent f5e9ae8 commit 9966c3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/sys/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ typedef uint64_t nlink_t;
typedef uint32_t uid_t;
typedef uint32_t gid_t;
typedef int32_t pid_t;
typedef uint64_t off_t;
typedef int64_t off_t;
typedef uint64_t time_t;
typedef uint16_t blksize_t;
typedef uint64_t blkcnt_t;
Expand Down

0 comments on commit 9966c3c

Please sign in to comment.