From d6127ae58ff3e823773a158a1e79d5999fa7f995 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 11 Aug 2020 19:51:32 -0400 Subject: move stdlib internals to _stdlib.h and struct __stdlib --- src/stdlib/_rand.h | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 src/stdlib/_rand.h (limited to 'src/stdlib/_rand.h') diff --git a/src/stdlib/_rand.h b/src/stdlib/_rand.h deleted file mode 100644 index 7f7102ef..00000000 --- a/src/stdlib/_rand.h +++ /dev/null @@ -1,4 +0,0 @@ -#include - -#define _rand(_n) \ - (((_n) = (_n) * 1103515245 + 12345) ? (_n) / UINT_MAX % RAND_MAX : 0) -- cgit v1.2.1