This commit is contained in:
Marc Alexander Lehmann 2019-08-28 09:45:49 +00:00
parent 05948cda35
commit 779ad6fae4
1 changed files with 5 additions and 3 deletions

8
ev.c
View File

@ -2006,9 +2006,11 @@ ev_time (void) EV_NOEXCEPT
}
#endif
struct timeval tv;
gettimeofday (&tv, 0);
return EV_TV_GET (tv);
{
struct timeval tv;
gettimeofday (&tv, 0);
return EV_TV_GET (tv);
}
}
#endif