blob: 0b24b744a89f2cd9564c575ef16520e20f8ec542 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef _SYS_RANDOM_H
#define _SYS_RANDOM_H
#ifdef __cplusplus
extern "C" {
#endif
#define GRND_RANDOM 1
#define GRND_NONBLOCK 2
#include <bits/ssize_t.h>
#include <bits/size_t.h>
#ifndef __MLIBC_ABI_ONLY
ssize_t getrandom(void *, size_t, unsigned int);
#endif /* !__MLIBC_ABI_ONLY */
#ifdef __cplusplus
}
#endif
#endif //_SYS_RANDOM_H
|