f7aa6f913a
Yeah Signed-off-by: kaguya <vpshinomiya@protonmail.com>
25 lines
358 B
C
25 lines
358 B
C
|
|
#ifndef _SYS_RANDOM_H
|
|
#define _SYS_RANDOM_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <abi-bits/random.h>
|
|
#include <bits/ssize_t.h>
|
|
#include <bits/size_t.h>
|
|
|
|
#ifndef __MLIBC_ABI_ONLY
|
|
|
|
ssize_t getrandom(void *__buffer, size_t __max_size, unsigned int __flags);
|
|
|
|
#endif /* !__MLIBC_ABI_ONLY */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /*_SYS_RANDOM_H */
|
|
|