summaryrefslogtreecommitdiff
path: root/src/libc/include/sys/time.h
blob: 54df6b31137c63ec6f018e14bcde2c0982199c3d (plain)
1
2
3
4
5
6
7
8
#pragma once
#include <errno.h>
#include <sys/types.h>

struct timeval {
	time_t tv_sec;
	suseconds_t tv_usec;
};