home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
InfoMagic Internet Tools 1995 April
/
Internet Tools.iso
/
osi
/
isode
/
vmsisode
/
vmsisode80_tar.Z
/
vmsisode80_tar
/
sockit
/
gccinclude
/
sys
/
timeb.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
|
1990-04-24
|
260 b
|
19 lines
/* TIMEB - Ftime() RTL Routine Return Structure Definition */
# ifndef __TIMEB
# define __TIMEB
#include <sys/types.h>
struct timeb
{
time_t time;
unsigned short millitm;
short timezone;
short dstflag;
};
typedef struct timeb timeb_t;
# endif