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

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