Fix grp.h and gid_t/uid_t for Go

This commit is contained in:
Wildan Mubarok
2025-07-21 00:15:02 +00:00
parent 648d3be78e
commit 2c4bd8d061
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -5,8 +5,8 @@
typedef long blksize_t;
typedef long dev_t;
typedef unsigned long ino_t;
typedef int gid_t;
typedef int uid_t;
typedef unsigned int gid_t;
typedef unsigned int uid_t;
typedef int mode_t;
typedef unsigned long nlink_t;
typedef long long off_t;
+1 -1
View File
@@ -1,4 +1,4 @@
sys_includes = []
sys_includes = ["sys/types.h", "stdint.h"]
include_guard = "_RELIBC_GRP_H"
language = "C"
style = "Tag"
+2 -2
View File
@@ -61,8 +61,8 @@ pub type mode_t = c_int;
pub type time_t = c_longlong;
pub type pid_t = c_int;
pub type id_t = c_uint;
pub type gid_t = c_int;
pub type uid_t = c_int;
pub type gid_t = c_uint;
pub type uid_t = c_uint;
pub type dev_t = c_long;
pub type ino_t = c_ulonglong;
pub type nlink_t = c_ulong;