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

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