summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/getentropy.c
blob: 3a651ba547f9d1f51bfb07f22af5049f879b403b (plain)
1
2
3
4
5
6
7
8
9
10
#include <unistd.h>
#include <syscall.h>

int getentropy(void *buffer, size_t length)
{
	(void)buffer;
	(void)length;
	// TODO
	return 0;
}