We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 567dc5f commit c71ad7dCopy full SHA for c71ad7d
1 file changed
src/iso_alloc_random.c
@@ -37,8 +37,7 @@ INTERNAL_HIDDEN uint64_t rand_uint64(void) {
37
#elif __FreeBSD__ || __DragonFly__ || __linux__ || __ANDROID__
38
ret = getrandom(&val, sizeof(val), GRND_NONBLOCK) != sizeof(val);
39
#elif __NetBSD__
40
-/* Temporary solution until NetBSD 10 released with getrandom support
41
- */
+ /* Temporary solution until NetBSD 10 released with getrandom support */
42
arc4random_buf(&val, sizeof(val));
43
#endif
44
0 commit comments