1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 22:35:07 +00:00
serenity/LibC/sys/time.h

14 lines
229 B
C

#pragma once
#include <sys/cdefs.h>
__BEGIN_DECLS
struct timezone {
int tz_minuteswest;
int tz_dsttime;
};
int gettimeofday(struct timeval* __restrict__, void* __restrict__) __attribute__((nonnull(1)));
__END_DECLS