banan-os/libc/include/time.h

13 lines
117 B
C
Raw Normal View History

2023-03-24 17:40:58 +02:00
#pragma once
#include <sys/types.h>
__BEGIN_DECLS
struct timespec
{
time_t tv_sec;
long tv_nsec;
};
__END_DECLS