hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 00a3bc1d92cadb0415f6ad637febf7f4562a029d
parent ed24bff22489b9817df35dce7ddfaf6d42fe34a9
Author: Ember Sawady <ecs@d2evs.net>
Date:   Thu, 12 Sep 2024 05:40:46 +0000

Revert "rt+freebsd: fix some types"

This reverts commit b2cc6555cfa46c2b21196f402559989332fdb1ac.

broke the build, requires nontrivial fixing

Diffstat:
Mrt/+freebsd/types.ha | 10+++++-----
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 = i64; -export type pid_t = i32; -export type uid_t = u32; -export type gid_t = u32; +export type id_t = uint; +export type pid_t = uint; +export type uid_t = uint; +export type gid_t = uint; 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 = i64; +export type rlim_t = u64; export def NGROUPS_MAX: size = 1023; export def NSIG: int = 32;