home *** CD-ROM | disk | FTP | other *** search
/ ANews 3 / AnewsCD3.iso / DP / Programmation / GCC / gcc_include / sys / timeb.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-08  |  449 b   |  29 lines

  1. /*    system time b for ansic.library        */
  2. /*    (c)Copyright 1992 Davide Pasetto     */
  3.  
  4. #ifndef    _SYS_TIMEB_H
  5. #define _SYS_TIMEB_H
  6.  
  7. #include    <sys/types.h>
  8.  
  9. struct    timeb
  10. {
  11.     time_t        time;
  12.     unsigned short  millitm;
  13.     short        timezone;
  14.     short        dstflag;
  15. };
  16.  
  17. #ifdef    __cplusplus
  18. extern "C" {
  19. #endif
  20.  
  21. extern    void    ftime(struct timeb *__tim);
  22. extern    void    utime(char *__nome, time_t __tim[2]);
  23.  
  24. #ifdef    __cplusplus
  25. }
  26. #endif
  27.  
  28. #endif    /* _SYS_TIMEB_H */
  29.