home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / gnu / mntinc16 / timeb.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-29  |  364 b   |  18 lines

  1. #ifndef _TIMEB_H
  2. #define _TIMEB_H
  3.  
  4. #ifndef _COMPILER_H
  5. #include <compiler.h>
  6. #endif
  7.  
  8. struct timeb {
  9.     long        time;        /* seconds since Jan 1., 1970 */
  10.     short        millitm;    /* milliseconds since "time" */
  11.     short        timezone;    /* minutes west of GMT */
  12.     short        dstflag;    /* if time zone can have DST */
  13. };
  14.  
  15. __EXTERN int    ftime    __PROTO((struct timeb *));
  16.  
  17. #endif
  18.