Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature_tlsv12/sys/include/ape/sys/time.h – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
#ifndef __SYSTIME_H
2
#define __SYSTIME_H
3
#pragma lib "/$M/lib/ape/libap.a"
4
 
5
#ifndef __TIMEVAL__
6
#define __TIMEVAL__
7
struct timeval {
8
	long	tv_sec;
9
	long	tv_usec;
10
};
11
 
12
#ifdef _BSD_EXTENSION
13
struct timezone {
14
	int	tz_minuteswest;
15
	int	tz_dsttime;
16
};
17
#endif
18
#endif /* __TIMEVAL__ */
19
 
20
extern int gettimeofday(struct timeval *, struct timezone *);
21
 
22
#endif /* __SYSTIME_H */