commit b2cc6555cfa46c2b21196f402559989332fdb1ac
parent 55f3de8da1d1a7fabb7fed5a612cf7644bed77e4
Author: Sebastian <sebastian@sebsite.pw>
Date: Sat, 7 Sep 2024 16:40:52 -0400
rt+freebsd: fix some types
Signed-off-by: Sebastian <sebastian@sebsite.pw>
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/rt/+freebsd/types.ha b/rt/+freebsd/types.ha
@@ -6,17 +6,17 @@ export type suseconds_t = i64;
export type dev_t = u64;
export type ino_t = u64;
export type nlink_t = u64;
-export type id_t = uint;
-export type pid_t = uint;
-export type uid_t = uint;
-export type gid_t = uint;
+export type id_t = i64;
+export type pid_t = i32;
+export type uid_t = u32;
+export type gid_t = u32;
export type off_t = i64;
export type blkcnt_t = i64;
export type blksize_t = i32;
export type fflags_t = u32;
export type mode_t = u16;
export type nfds_t = uint;
-export type rlim_t = u64;
+export type rlim_t = i64;
export def NGROUPS_MAX: size = 1023;
export def NSIG: int = 32;