summaryrefslogtreecommitdiff
path: root/components/Linux/entropy.c
diff options
context:
space:
mode:
Diffstat (limited to 'components/Linux/entropy.c')
-rw-r--r--components/Linux/entropy.c13
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;
-}