From 5949f9b9cd7d6e416716b51c2cae0f4336cd82c5 Mon Sep 17 00:00:00 2001 From: Leo Tenenbaum Date: Tue, 7 Jan 2020 21:54:31 -0500 Subject: put small functions together and cleaned up float exporting --- rand.c | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 rand.c (limited to 'rand.c') diff --git a/rand.c b/rand.c deleted file mode 100644 index 7a9fa4e..0000000 --- a/rand.c +++ /dev/null @@ -1,9 +0,0 @@ -/* - Copyright (C) 2019, 2020 Leo Tenenbaum. - This file is part of toc. toc is distributed under version 3 of the GNU General Public License, without any warranty whatsoever. - You should have received a copy of the GNU General Public License along with toc. If not, see . -*/ -static U32 rand_u32(U32 seed) { - U64 seed64 = (U64)seed; - return (U32)((seed64 * 0x832f0fda4e1a8642 + 0x41d49cd5459a2ab4) >> 32); -} -- cgit v1.2.3