summaryrefslogtreecommitdiff
path: root/components/entropy.c
diff options
context:
space:
mode:
authorQuentin Rameau <quinq@fifth.space>2018-04-30 15:14:34 +0200
committerAaron Marcher <me@drkhsh.at>2018-04-30 15:41:31 +0200
commit3cc649e34c61f557da885260d5542c805e66b0d8 (patch)
treec4a5a779c8a14896f8baa3d1c6fd203782c582d4 /components/entropy.c
parentf088dbfea06363a84533bb9f1a84f756c46bc3b2 (diff)
entropy: OS split
Diffstat (limited to 'components/entropy.c')
-rw-r--r--components/entropy.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/components/entropy.c b/components/entropy.c
deleted file mode 100644
index 65c65a1..0000000
--- a/components/entropy.c
+++ /dev/null
@@ -1,15 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#if defined(__linux__)
-#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;
-}
-#endif