From: Bart Van Assche Date: Sun, 5 Jan 2020 19:40:36 +0000 (-0800) Subject: Windows: Remove more unused OS dependent code X-Git-Tag: fio-3.18~18^2~4 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=060514e7e0b23e5441bf88ce80f6ec13c8b2399f 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 --- 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