Subversion Repositories planix.SVN

Rev

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 */