From db0357ac19331f1715276aeb2ccc77b6e851f872 Mon Sep 17 00:00:00 2001 From: alice <58637860+alicealys@users.noreply.github.com> Date: Mon, 27 Jul 2026 22:47:25 +0200 Subject: [PATCH] fix build --- src/stdinc.cpp | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/src/stdinc.cpp b/src/stdinc.cpp index 25163e4..49e54fa 100644 --- a/src/stdinc.cpp +++ b/src/stdinc.cpp @@ -1 +1,24 @@ -#include \ No newline at end of file +#include + +extern "C" +{ + int s_read_arc4random(void*, size_t) + { + return -1; + } + + int s_read_getrandom(void*, size_t) + { + return -1; + } + + int s_read_urandom(void*, size_t) + { + return -1; + } + + int s_read_ltm_rng(void*, size_t) + { + return -1; + } +}