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:
Hauke Mehrtens
2018-02-22 19:34:58 -05:00
committed by Rich Felker
parent 9bed82df30
commit e206582091
2 changed files with 26 additions and 0 deletions
+7
View File
@@ -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);
}