Indent
This commit is contained in:
parent
f053b98b64
commit
de3c0ff85e
@ -6,11 +6,11 @@
|
|||||||
# include <sys/time.h>
|
# include <sys/time.h>
|
||||||
#endif
|
#endif
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
#ifdef __dietlibc__
|
# ifdef __dietlibc__
|
||||||
#define _LINUX_SOURCE
|
# define _LINUX_SOURCE
|
||||||
#else
|
# else
|
||||||
# include <sys/syscall.h>
|
# include <sys/syscall.h>
|
||||||
#endif
|
# endif
|
||||||
# include <poll.h>
|
# include <poll.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -219,11 +219,11 @@ _randombytes_linux_getrandom(void * const buf, const size_t size)
|
|||||||
|
|
||||||
assert(size <= 256U);
|
assert(size <= 256U);
|
||||||
do {
|
do {
|
||||||
#ifdef __dietlibc__
|
# ifdef __dietlibc__
|
||||||
readnb = getrandom(buf, size, 0);
|
readnb = getrandom(buf, size, 0);
|
||||||
#else
|
# else
|
||||||
readnb = syscall(SYS_getrandom, buf, (int) size, 0);
|
readnb = syscall(SYS_getrandom, buf, (int) size, 0);
|
||||||
#endif
|
# endif
|
||||||
} while (readnb < 0 && (errno == EINTR || errno == EAGAIN));
|
} while (readnb < 0 && (errno == EINTR || errno == EAGAIN));
|
||||||
|
|
||||||
return (readnb == (int) size) - 1;
|
return (readnb == (int) size) - 1;
|
||||||
|
@ -6,11 +6,11 @@
|
|||||||
# include <sys/time.h>
|
# include <sys/time.h>
|
||||||
#endif
|
#endif
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
#ifdef __dietlibc__
|
# ifdef __dietlibc__
|
||||||
#define _LINUX_SOURCE
|
# define _LINUX_SOURCE
|
||||||
#else
|
# else
|
||||||
# include <sys/syscall.h>
|
# include <sys/syscall.h>
|
||||||
#endif
|
# endif
|
||||||
# include <poll.h>
|
# include <poll.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -201,11 +201,11 @@ _randombytes_linux_getrandom(void * const buf, const size_t size)
|
|||||||
|
|
||||||
assert(size <= 256U);
|
assert(size <= 256U);
|
||||||
do {
|
do {
|
||||||
#ifdef __dietlibc__
|
# ifdef __dietlibc__
|
||||||
readnb = getrandom( buf, size, 0);
|
readnb = getrandom(buf, size, 0);
|
||||||
#else
|
# else
|
||||||
readnb = syscall(SYS_getrandom, buf, (int) size, 0);
|
readnb = syscall(SYS_getrandom, buf, (int) size, 0);
|
||||||
#endif
|
# endif
|
||||||
} while (readnb < 0 && (errno == EINTR || errno == EAGAIN));
|
} while (readnb < 0 && (errno == EINTR || errno == EAGAIN));
|
||||||
|
|
||||||
return (readnb == (int) size) - 1;
|
return (readnb == (int) size) - 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user