From 060514e7e0b23e5441bf88ce80f6ec13c8b2399f Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sun, 5 Jan 2020 11:40:36 -0800 Subject: [PATCH] Windows: Remove more unused OS dependent code Since commit 46bfd4e5170e ("Remove old OS dependent (unused) random code") rand_r() is no longer used. Hence remove its definition. Signed-off-by: Bart Van Assche --- os/os-windows.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/os/os-windows.h b/os/os-windows.h index 6061d8c7..b78abf0f 100644 --- a/os/os-windows.h +++ b/os/os-windows.h @@ -22,11 +22,6 @@ #include "windows/posix.h" -/* MinGW won't declare rand_r unless _POSIX is defined */ -#if defined(WIN32) && !defined(rand_r) -int rand_r(unsigned *); -#endif - #ifndef PTHREAD_STACK_MIN #define PTHREAD_STACK_MIN 65535 #endif -- 2.25.1