From 891832d55feacc8fb55a33c1624b931f352b916d Mon Sep 17 00:00:00 2001 From: Oleg Grenrus Date: Sun, 29 Jun 2025 14:40:36 +0300 Subject: [PATCH] Don't include sys/random.h As far as I can trace, Android doesn't need it: https://android.googlesource.com/platform/bionic/+/7110157e941f0895638c81872b535d8781cf79cf OpenBSD doesnt have that header. So lets not include it. Resolves #101 --- cbits-unix/init.c | 1 - 1 file changed, 1 deletion(-) diff --git a/cbits-unix/init.c b/cbits-unix/init.c index 05fb84c..7e3ce15 100644 --- a/cbits-unix/init.c +++ b/cbits-unix/init.c @@ -1,6 +1,5 @@ #include #include -#include uint64_t splitmix_init() { uint64_t result;