mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 01:20:25 +00:00
22 lines
409 B
C++
22 lines
409 B
C++
#include "time.h"
|
|
#include "errno.h"
|
|
#include <Kernel/Syscall.h>
|
|
|
|
extern "C" {
|
|
|
|
time_t time(time_t* tloc)
|
|
{
|
|
struct timeval tv;
|
|
struct timezone tz;
|
|
if (gettimeofday(&tv, &tz) < 0)
|
|
return (time_t)-1;
|
|
return tv.tv_sec;
|
|
}
|
|
|
|
int gettimeofday(struct timeval* tv, struct timezone*)
|
|
{
|
|
int rc = Syscall::invoke(Syscall::SC_gettimeofday, (dword)tv);
|
|
__RETURN_WITH_ERRNO(rc, rc, -1);
|
|
}
|
|
|
|
}
|