mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 03:17:34 +00:00
Fix all current build warnings in LibC.
This commit is contained in:
parent
47b7eeda44
commit
e9cdb6bb9b
9 changed files with 19 additions and 17 deletions
|
@ -10,6 +10,8 @@ time_t time(time_t* tloc)
|
|||
struct timezone tz;
|
||||
if (gettimeofday(&tv, &tz) < 0)
|
||||
return (time_t)-1;
|
||||
if (tloc)
|
||||
*tloc = tv.tv_sec;
|
||||
return tv.tv_sec;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue