mirror of
git://git.musl-libc.org/musl
synced 2025-02-11 08:27:12 +00:00
added in linux commit 75551dbf112c992bc6c99a972990b3f272247e23 random: add GRND_INSECURE to return best-effort non-cryptographic bytes
21 lines
324 B
C
21 lines
324 B
C
#ifndef _SYS_RANDOM_H
|
|
#define _SYS_RANDOM_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define __NEED_size_t
|
|
#define __NEED_ssize_t
|
|
#include <bits/alltypes.h>
|
|
|
|
#define GRND_NONBLOCK 0x0001
|
|
#define GRND_RANDOM 0x0002
|
|
#define GRND_INSECURE 0x0004
|
|
|
|
ssize_t getrandom(void *, size_t, unsigned);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|