1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:27:35 +00:00

Add gettimeofday() syscall and LibC wrappers gettimeofday() and time().

This only has second accuracy right now, I'll work out subseconds later.
This commit is contained in:
Andreas Kling 2018-10-25 17:29:49 +02:00
parent 5978185242
commit dc6f57f19c
20 changed files with 188 additions and 8 deletions

10
Userland/date.cpp Normal file
View file

@ -0,0 +1,10 @@
#include <LibC/time.h>
#include <LibC/stdio.h>
int main(int c, char** v)
{
time_t now = time(nullptr);
printf("%u\n", now);
return 0;
}