From 0c2fabc6c5cc1631fc2fb8dc7ee46333cc9e4ddc Mon Sep 17 00:00:00 2001 From: Michał Łyszczek Date: Sat, 3 Feb 2018 07:22:30 +0100 Subject: fix: sys/time.h only needed in multi-threaded build --- rb/rb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rb/rb.c b/rb/rb.c index 08b94c0..b8ae3b8 100644 --- a/rb/rb.c +++ b/rb/rb.c @@ -20,12 +20,12 @@ #include #include #include -#include #if ENABLE_THREADS +# include # include # include -# include +# include #endif #include "rb.h" -- cgit v1.2.3-8-gadcc