summaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorAaron Marcher <me@drkhsh.at>2018-05-06 22:54:32 +0200
committerAaron Marcher <me@drkhsh.at>2018-05-06 22:54:32 +0200
commitfd14804d6ffb212bb88bb5560508e38b6cf432fd (patch)
tree30db27471db8515ac6b27047ed53a9565164c9d6 /components
parent62563a5a0d133fac43d81f85b50d6da01eb93283 (diff)
entropy: Port to OpenBSD
OpenBSD's entropy design is superior to Linux.
Diffstat (limited to 'components')
-rw-r--r--components/entropy.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/components/entropy.c b/components/entropy.c
index 2baa8aa..1450b31 100644
--- a/components/entropy.c
+++ b/components/entropy.c
@@ -14,5 +14,9 @@
bprintf("%d", num) : NULL;
}
#elif defined(__OpenBSD__)
- /* unimplemented */
+ const char *
+ entropy(void)
+ {
+ return "∞";
+ }
#endif