mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-06 23:02:10 +03:00
3da18e6951
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
|