diff options
Diffstat (limited to 'components/Linux/entropy.c')
-rw-r--r-- | components/Linux/entropy.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/components/Linux/entropy.c b/components/Linux/entropy.c deleted file mode 100644 index 17be270..0000000 --- a/components/Linux/entropy.c +++ /dev/null @@ -1,13 +0,0 @@ -/* See LICENSE file for copyright and license details. */ -#include <stdio.h> - -#include "../../util.h" - -const char * -entropy(void) -{ - int num; - - return (pscanf("/proc/sys/kernel/random/entropy_avail", "%d", &num) == 1) ? - bprintf("%d", num) : NULL; -} |