home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / include / sys / timeb.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-24  |  195 b   |  12 lines

  1. #include <sys/types.h>
  2.  
  3. struct timeb
  4. {
  5.     time_t        time;        /* Seconds since the epoch    */
  6.     unsigned short    millitm;
  7.     short        timezone;
  8.     short        dstflag;
  9. };
  10.  
  11. extern int    ftime(struct timeb *);
  12.