File tree 2 files changed +6
-0
lines changed
src/unix/linux_like/android
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -3110,6 +3110,7 @@ dlsym
3110
3110
dup
3111
3111
dup2
3112
3112
duplocale
3113
+ endgrent
3113
3114
endservent
3114
3115
epoll_create
3115
3116
epoll_create1
@@ -3212,6 +3213,7 @@ getegid
3212
3213
getenv
3213
3214
geteuid
3214
3215
getgid
3216
+ getgrent
3215
3217
getgrgid
3216
3218
getgrgid_r
3217
3219
getgrnam
@@ -3609,6 +3611,7 @@ seteuid
3609
3611
setfsgid
3610
3612
setfsuid
3611
3613
setgid
3614
+ setgrent
3612
3615
setgroups
3613
3616
sethostname
3614
3617
setlocale
Original file line number Diff line number Diff line change @@ -3570,6 +3570,9 @@ safe_f! {
3570
3570
}
3571
3571
3572
3572
extern "C" {
3573
+ pub fn setgrent ( ) ;
3574
+ pub fn endgrent ( ) ;
3575
+ pub fn getgrent ( ) -> * mut :: group ;
3573
3576
pub fn getrlimit64 ( resource : :: c_int , rlim : * mut rlimit64 ) -> :: c_int ;
3574
3577
pub fn setrlimit64 ( resource : :: c_int , rlim : * const rlimit64 ) -> :: c_int ;
3575
3578
pub fn getrlimit ( resource : :: c_int , rlim : * mut :: rlimit ) -> :: c_int ;
You can’t perform that action at this time.
0 commit comments