aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/libc_compat/include/random/sys/random.h
blob: 8c13837f7226cc88bf045aadc295401732d0c100 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _SYS_RANDOM_H
#define _SYS_RANDOM_H
#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 *, size_t, unsigned);

#ifdef __cplusplus
}
#endif
#endif