diff options
author | bors <bors@rust-lang.org> | 2022-11-20 03:28:04 +0000 |
---|---|---|
committer | bors <bors@rust-lang.org> | 2022-11-20 03:28:04 +0000 |
commit | 4493a07473243c4574793db35206ba8e032b6627 (patch) | |
tree | 1d3738c0563657eff422968c2ffb87708dc9fcc0 | |
parent | cea201b12f1c8460c475dc20a7d4e72c4a957fd5 (diff) | |
parent | a68d3ed0acf3b77e191b4756146fd58f851e8591 (diff) | |
download | rust-libc-4493a07473243c4574793db35206ba8e032b6627.tar.gz |
Auto merge of #2995 - carbotaniuman:rand48, r=JohnTitor
Add rand48 functions
-rw-r--r-- | libc-test/semver/linux.txt | 9 | ||||
-rw-r--r-- | src/unix/linux_like/linux/mod.rs | 10 |
2 files changed, 19 insertions, 0 deletions
diff --git a/libc-test/semver/linux.txt b/libc-test/semver/linux.txt index 14d3fe74b7..54825c24bc 100644 --- a/libc-test/semver/linux.txt +++ b/libc-test/semver/linux.txt @@ -2891,6 +2891,7 @@ dirfd dl_iterate_phdr dl_phdr_info dqblk +drand48 dup3 duplocale endgrent @@ -2904,6 +2905,7 @@ epoll_ctl epoll_event epoll_pwait epoll_wait +erand48 eventfd execvpe faccessat @@ -3012,15 +3014,18 @@ ip_mreq_source ipc_perm itimerspec j1939_filter +jrand48 key_t killpg labs +lcong48 lgetxattr listxattr llistxattr lockf loff_t login_tty +lrand48 lremovexattr lseek64 lsetxattr @@ -3055,6 +3060,7 @@ mq_timedreceive mq_timedsend mq_unlink mqd_t +mrand48 mremap msgctl msgget @@ -3074,6 +3080,7 @@ nl_langinfo_l nlattr nlmsgerr nlmsghdr +nrand48 off64_t open64 open_how @@ -3192,6 +3199,7 @@ sched_setaffinity sched_setparam sched_setscheduler seccomp_data +seed48 seekdir sem_close sem_destroy @@ -3252,6 +3260,7 @@ sockaddr_vm splice spwd srand +srand48 stack_t stat64 statfs diff --git a/src/unix/linux_like/linux/mod.rs b/src/unix/linux_like/linux/mod.rs index 273e70fb93..6faf3ae04e 100644 --- a/src/unix/linux_like/linux/mod.rs +++ b/src/unix/linux_like/linux/mod.rs @@ -3798,6 +3798,16 @@ extern "C" { pub fn rand() -> ::c_int; pub fn srand(seed: ::c_uint); + pub fn drand48() -> ::c_double; + pub fn erand48(xseed: *mut ::c_ushort) -> ::c_double; + pub fn lrand48() -> ::c_long; + pub fn nrand48(xseed: *mut ::c_ushort) -> ::c_long; + pub fn mrand48() -> ::c_long; + pub fn jrand48(xseed: *mut ::c_ushort) -> ::c_long; + pub fn srand48(seed: ::c_long); + pub fn seed48(xseed: *mut ::c_ushort) -> *mut ::c_ushort; + pub fn lcong48(p: *mut ::c_ushort); + pub fn lutimes(file: *const ::c_char, times: *const ::timeval) -> ::c_int; pub fn setpwent(); |