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

  1. #ifndef _SYS_TIMEX_H
  2. #define _SYS_TIMEX_H
  3.  
  4. #include <features.h>
  5. #include <sys/types.h>
  6. #include <sys/time.h>
  7. #include <linux/timex.h>
  8.  
  9. struct ntptimeval {
  10.   struct timeval time;    /* current time */
  11.   long maxerror;    /* maximum error (usec) */
  12.   long esterror;    /* estimated error (usec) */
  13. };
  14.  
  15. __BEGIN_DECLS
  16.  
  17. extern int __adjtimex __P ((struct timex * __ntx));
  18. extern int __ntp_gettime __P ((struct ntptimeval * __ntv)); 
  19.  
  20. __END_DECLS
  21.  
  22. #endif
  23.