This website works better with JavaScript.
Home
Help
Register
Sign In
mirrors
/
libev
mirror of
/home/gitosis/repositories/libev.git
Watch
1
Star
0
Fork
0
Code
Releases
62
Activity
Browse Source
c90
master
Marc Alexander Lehmann
1 year ago
parent
05948cda35
commit
779ad6fae4
1 changed files
with
5 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-3
ev.c
+ 5
- 3
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
Write
Preview
Loading…
Cancel
Save