Fix Xcode error with gettimeofday in fluid_sys.c

This commit is contained in:
cbjeukendrup 2020-08-24 23:13:24 +02:00
parent 1eedc3eb2e
commit 5e3a8782ce

View file

@ -352,6 +352,8 @@ int gettimeofday(struct timeval * tp, struct timezone * tzp)
tp->tv_usec = (long) (system_time.wMilliseconds * 1000);
return 0;
}
#else
#include <sys/time.h>
#endif
/**