1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:38:11 +00:00
serenity/LibC/sys/time.h
2019-03-27 01:31:53 +01:00

9 lines
163 B
C

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