aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/libc_compat/random/sys/random.h
blob: b5b1662c279ac46bb2f1f304c4f221adb9824706 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#ifdef __cplusplus
extern "C" {
#endif

#include <sys/types.h>

#define SYS_getrandom   318

#define GRND_NONBLOCK	0x0001
#define GRND_RANDOM		0x0002
#define GRND_INSECURE	0x0004

ssize_t getrandom(void* buf, size_t buflen, unsigned int flags);

#ifdef __cplusplus
} // extern "C"
#endif