home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Borland Programmer's Resource
/
Borland_Programmers_Resource_CD_1995.iso
/
utils
/
source
/
sh
/
std
/
posix
/
time.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-05-19
|
274 b
|
15 lines
/*
* Replacement for BSD <sys/time.h>
* because Ultrix screws it up.
*/
struct timeval {
long tv_sec; /* time_t */
long tv_usec; /* microsex */
};
struct timezone {
int tz_minuteswest; /* of Greenwinch */
int tz_dsttime; /* type of dst correction to apply */
};