add getrandom syscall wrapper
This syscall is available since Linux 3.17 and was also implemented in glibc in version 2.25 using the same interfaces.
This commit is contained in:
committed by
Rich Felker
parent
9bed82df30
commit
e206582091
@@ -0,0 +1,7 @@
|
||||
#include <sys/random.h>
|
||||
#include "syscall.h"
|
||||
|
||||
ssize_t getrandom(void *buf, size_t buflen, unsigned flags)
|
||||
{
|
||||
return syscall_cp(SYS_getrandom, buf, buflen, flags);
|
||||
}
|
||||
Reference in New Issue
Block a user