am c643a4d4: am 2be3f09f: Merge "time: Improve C99 compliance"
* commit 'c643a4d4c71c2caaf016ab402fba99c1c9377567': time: Improve C99 compliance
This commit is contained in:
commit
afc92c7023
@ -34,12 +34,15 @@ time_t
|
|||||||
time(time_t *t)
|
time(time_t *t)
|
||||||
{
|
{
|
||||||
struct timeval tt;
|
struct timeval tt;
|
||||||
|
time_t ret;
|
||||||
|
|
||||||
if (gettimeofday(&tt, (struct timezone *)0) < 0)
|
if (gettimeofday(&tt, (struct timezone *)0) < 0)
|
||||||
return (-1);
|
ret = -1;
|
||||||
if (t)
|
else
|
||||||
*t = (time_t)tt.tv_sec;
|
ret = tt.tv_sec;
|
||||||
return (tt.tv_sec);
|
if (t != NULL)
|
||||||
|
*t = ret;
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
// return monotonically increasing CPU time in ticks relative to unspecified epoch
|
// return monotonically increasing CPU time in ticks relative to unspecified epoch
|
||||||
|
Loading…
x
Reference in New Issue
Block a user