summaryrefslogtreecommitdiff
path: root/src/libc/include/sys/time.h
blob: 5e00fe9fa21ac7530ef32b2805749e04d59654cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once
#include <errno.h>
#include <sys/types.h>

typedef long long off_t;
typedef int64_t time_t;
typedef int64_t suseconds_t;
typedef uint64_t clock_t;

struct timeval {
	time_t tv_sec;
	suseconds_t tv_usec;
};