Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
linux
getrandom.c
pretty
plain
permalink
blame
history
•
7 lines
•
165 B
1
#include <sys/random.h>
2
#include "syscall.h"
3
4
ssize_t getrandom(void *buf, size_t buflen, unsigned flags)
5
{
6
	return syscall_cp(SYS_getrandom, buf, buflen, flags);
7
}