entropy: OS split
Quentin Rameau quinq@fifth.space
Mon, 30 Apr 2018 15:14:34 +0200
3 files changed,
2 insertions(+),
4 deletions(-)
M
components/entropy.c
→
components/Linux/entropy.c
@@ -1,8 +1,7 @@
/* See LICENSE file for copyright and license details. */ -#if defined(__linux__) #include <stdio.h> -#include "../util.h" +#include "../../util.h" const char * entropy(void)@@ -12,4 +11,3 @@
return (pscanf("/proc/sys/kernel/random/entropy_avail", "%d", &num) == 1) ? bprintf("%d", num) : NULL; } -#endif