aboutsummaryrefslogtreecommitdiff
path: root/lib/sys/time.h
blob: 920ee5c34d389a860ccf02135a392a02a32db6e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef TIME_H
#define TIME_H

#include "sizes.h"

struct timespec {
	u64  tv_sec;
	long tv_nsec;
};

#endif