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 @@ -2891,6 +2891,7 @@ dirfd
2891
2891
dl_iterate_phdr
2892
2892
dl_phdr_info
2893
2893
dqblk
2894
+ drand48
2894
2895
dup3
2895
2896
duplocale
2896
2897
endgrent
@@ -2904,6 +2905,7 @@ epoll_ctl
2904
2905
epoll_event
2905
2906
epoll_pwait
2906
2907
epoll_wait
2908
+ erand48
2907
2909
eventfd
2908
2910
execvpe
2909
2911
faccessat
@@ -3012,15 +3014,18 @@ ip_mreq_source
3012
3014
ipc_perm
3013
3015
itimerspec
3014
3016
j1939_filter
3017
+ jrand48
3015
3018
key_t
3016
3019
killpg
3017
3020
labs
3021
+ lcong48
3018
3022
lgetxattr
3019
3023
listxattr
3020
3024
llistxattr
3021
3025
lockf
3022
3026
loff_t
3023
3027
login_tty
3028
+ lrand48
3024
3029
lremovexattr
3025
3030
lseek64
3026
3031
lsetxattr
@@ -3055,6 +3060,7 @@ mq_timedreceive
3055
3060
mq_timedsend
3056
3061
mq_unlink
3057
3062
mqd_t
3063
+ mrand48
3058
3064
mremap
3059
3065
msgctl
3060
3066
msgget
@@ -3074,6 +3080,7 @@ nl_langinfo_l
3074
3080
nlattr
3075
3081
nlmsgerr
3076
3082
nlmsghdr
3083
+ nrand48
3077
3084
off64_t
3078
3085
open64
3079
3086
open_how
@@ -3192,6 +3199,7 @@ sched_setaffinity
3192
3199
sched_setparam
3193
3200
sched_setscheduler
3194
3201
seccomp_data
3202
+ seed48
3195
3203
seekdir
3196
3204
sem_close
3197
3205
sem_destroy
@@ -3252,6 +3260,7 @@ sockaddr_vm
3252
3260
splice
3253
3261
spwd
3254
3262
srand
3263
+ srand48
3255
3264
stack_t
3256
3265
stat64
3257
3266
statfs
Original file line number Diff line number Diff line change @@ -3798,6 +3798,16 @@ extern "C" {
3798
3798
pub fn rand ( ) -> :: c_int ;
3799
3799
pub fn srand ( seed : :: c_uint ) ;
3800
3800
3801
+ pub fn drand48 ( ) -> :: c_double ;
3802
+ pub fn erand48 ( xseed : * mut :: c_ushort ) -> :: c_double ;
3803
+ pub fn lrand48 ( ) -> :: c_long ;
3804
+ pub fn nrand48 ( xseed : * mut :: c_ushort ) -> :: c_long ;
3805
+ pub fn mrand48 ( ) -> :: c_long ;
3806
+ pub fn jrand48 ( xseed : * mut :: c_ushort ) -> :: c_long ;
3807
+ pub fn srand48 ( seed : :: c_long ) ;
3808
+ pub fn seed48 ( xseed : * mut :: c_ushort ) -> * mut :: c_ushort ;
3809
+ pub fn lcong48 ( p : * mut :: c_ushort ) ;
3810
+
3801
3811
pub fn lutimes ( file : * const :: c_char , times : * const :: timeval ) -> :: c_int ;
3802
3812
3803
3813
pub fn setpwent ( ) ;
You can’t perform that action at this time.
0 commit comments