1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 08:07:45 +00:00
serenity/LibC/time.h
Andreas Kling dc6f57f19c Add gettimeofday() syscall and LibC wrappers gettimeofday() and time().
This only has second accuracy right now, I'll work out subseconds later.
2018-10-25 17:36:18 +02:00

11 lines
102 B
C

#pragma once
#include "types.h"
extern "C" {
int gettimeofday(timeval*);
time_t time(time_t*);
}