summaryrefslogtreecommitdiff
path: root/src/time/struct_timespec.c
blob: cd068bd93e1132dff1e0c1c577aa3c7c8e0f519b (plain)
1
2
3
4
5
6
7
8
9
struct timespec {
	time_t tv_sec;	/* Seconds */
	long tv_nsec;	/* Nanoseonds */
};

/*
POSIX(199309)
STDC(201112)
*/