home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / armlinux / alpha / PARTITIONS / USR_GZ / usr / include / sys / timeb.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-14  |  294 b   |  22 lines

  1. #ifndef _SYS_TIMEB_H
  2. #define _SYS_TIMEB_H
  3.  
  4. #include <features.h>
  5. #include <sys/types.h>
  6.  
  7. struct timeb {
  8.     time_t   time;
  9.     unsigned short millitm;
  10.     short    timezone;
  11.     short    dstflag;
  12. };
  13.  
  14.  
  15. __BEGIN_DECLS
  16.  
  17. extern int      ftime __P ((struct timeb *__tp));
  18.  
  19. __END_DECLS
  20.  
  21. #endif /* _SYS_TIMEB_H */
  22.