summaryrefslogtreecommitdiffstats
path: root/include/linux/time.h
blob: 3a1bb50020fdc56ce1367bad8e9cda9677246358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _LINUX_TIME_H
#define _LINUX_TIME_H

#include <linux/types.h>

#define NSEC_PER_SEC	1000000000L

struct timespec {
	time_t	tv_sec;		/* seconds */
	long	tv_nsec;	/* nanoseconds */
};

#endif