home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / unixlib / include / sys / timeb.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-28  |  145 b   |  13 lines

  1. #ifndef _TIMEB_H
  2. #define _TIMEB_H
  3.  
  4. struct timeb
  5. {
  6.   time_t   time;
  7.   unsigned short millitm;
  8.   short    timezone;
  9.   short    dstflag;
  10. };
  11.  
  12. #endif
  13.