summaryrefslogtreecommitdiff
path: root/src/time/struct_timespec.c
blob: ecf0c8efb350619ce3750825682403d77fe14bce (plain)
1
2
3
4
5
6
7
8
9
10
#include <time.h>

struct timespec {
	time_t tv_sec;	/* Seconds */
	long tv_nsec;	/* Nanoseonds */
};

/*
POSIX(199309)
*/