mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 18:05:07 +00:00
21 lines
350 B
C++
21 lines
350 B
C++
#include "time.h"
|
|
#include "errno.h"
|
|
#include <Kernel/Syscall.h>
|
|
|
|
extern "C" {
|
|
|
|
time_t time(time_t* tloc)
|
|
{
|
|
timeval tv;
|
|
if (gettimeofday(&tv) < 0)
|
|
return (time_t)-1;
|
|
return tv.tv_sec;
|
|
}
|
|
|
|
int gettimeofday(timeval* tv)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::PosixGettimeofday, (dword)tv);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
}
|