1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:18:12 +00:00
serenity/LibC/time.h
2018-11-09 10:09:46 +01:00

17 lines
234 B
C

#pragma once
#include <sys/cdefs.h>
#include <sys/types.h>
__BEGIN_DECLS
struct timezone {
int tz_minuteswest;
int tz_dsttime;
};
int gettimeofday(struct timeval*, struct timezone* tz);
time_t time(time_t*);
__END_DECLS