File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed
src/unix/linux_like/linux Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -2872,6 +2872,7 @@ dirfd
2872
2872
dl_iterate_phdr
2873
2873
dl_phdr_info
2874
2874
dqblk
2875
+ drand48
2875
2876
dup3
2876
2877
duplocale
2877
2878
endgrent
@@ -2885,6 +2886,7 @@ epoll_ctl
2885
2886
epoll_event
2886
2887
epoll_pwait
2887
2888
epoll_wait
2889
+ erand48
2888
2890
eventfd
2889
2891
execvpe
2890
2892
faccessat
@@ -2991,15 +2993,18 @@ ip_mreq_source
2991
2993
ipc_perm
2992
2994
itimerspec
2993
2995
j1939_filter
2996
+ jrand48
2994
2997
key_t
2995
2998
killpg
2996
2999
labs
3000
+ lcong48
2997
3001
lgetxattr
2998
3002
listxattr
2999
3003
llistxattr
3000
3004
lockf
3001
3005
loff_t
3002
3006
login_tty
3007
+ lrand48
3003
3008
lremovexattr
3004
3009
lseek64
3005
3010
lsetxattr
@@ -3034,6 +3039,7 @@ mq_timedreceive
3034
3039
mq_timedsend
3035
3040
mq_unlink
3036
3041
mqd_t
3042
+ mrand48
3037
3043
mremap
3038
3044
msgctl
3039
3045
msgget
@@ -3053,6 +3059,7 @@ nl_langinfo_l
3053
3059
nlattr
3054
3060
nlmsgerr
3055
3061
nlmsghdr
3062
+ nrand48
3056
3063
off64_t
3057
3064
open64
3058
3065
open_how
@@ -3171,6 +3178,7 @@ sched_setaffinity
3171
3178
sched_setparam
3172
3179
sched_setscheduler
3173
3180
seccomp_data
3181
+ seed48
3174
3182
seekdir
3175
3183
sem_close
3176
3184
sem_destroy
@@ -3231,6 +3239,7 @@ sockaddr_vm
3231
3239
splice
3232
3240
spwd
3233
3241
srand
3242
+ srand48
3234
3243
stack_t
3235
3244
stat64
3236
3245
statfs
Original file line number Diff line number Diff line change @@ -3710,6 +3710,16 @@ extern "C" {
3710
3710
pub fn rand ( ) -> :: c_int ;
3711
3711
pub fn srand ( seed : :: c_uint ) ;
3712
3712
3713
+ pub fn drand48 ( ) -> :: c_double ;
3714
+ pub fn erand48 ( xseed : * mut :: c_ushort ) -> :: c_double ;
3715
+ pub fn lrand48 ( ) -> :: c_long ;
3716
+ pub fn nrand48 ( xseed : * mut :: c_ushort ) -> :: c_long ;
3717
+ pub fn mrand48 ( ) -> :: c_long ;
3718
+ pub fn jrand48 ( xseed : * mut :: c_ushort ) -> :: c_long ;
3719
+ pub fn srand48 ( seed : :: c_long ) ;
3720
+ pub fn seed48 ( xseed : * mut :: c_ushort ) -> * mut :: c_ushort ;
3721
+ pub fn lcong48 ( p : * mut :: c_ushort ) ;
3722
+
3713
3723
pub fn lutimes ( file : * const :: c_char , times : * const :: timeval ) -> :: c_int ;
3714
3724
3715
3725
pub fn setpwent ( ) ;
You can’t perform that action at this time.
0 commit comments