home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
zip
/
gnu
/
includ87.lzh
/
INCLUD87
/
TIMEB.H
< prev
next >
Wrap
C/C++ Source or Header
|
1993-07-30
|
416b
|
26 lines
#ifndef _TIMEB_H
#define _TIMEB_H
#ifndef _COMPILER_H
#include <compiler.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
struct timeb {
long time; /* seconds since Jan 1., 1970 */
short millitm; /* milliseconds since "time" */
short timezone; /* minutes west of GMT */
short dstflag; /* if time zone can have DST */
};
__EXTERN int ftime __PROTO((struct timeb *));
#ifdef __cplusplus
}
#endif
#endif