summaryrefslogtreecommitdiff
path: root/src/sys/timeb/struct_timeb.h
blob: 90ba63c372d12668eef663959522388c3dd38acc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <sys/timeb.h>

struct timeb {
	time_t time;
	unsigned short millitm;
	short timezone;
	short dstflag;
};

/*
XOPEN(400,700)
*/