home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / libc / v6 / ftime.c < prev    next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  165 b   |  17 lines

  1. #include <sys/types.h>
  2. #include <sys/timeb.h>
  3.  
  4. static struct timeb gorp = {
  5.     0L,
  6.     0,
  7.     5*60,
  8.     1
  9. };
  10.  
  11. ftime(gorpp)
  12. struct timeb *gorpp;
  13. {
  14.     *gorpp = gorp;
  15.     return(0);
  16. }
  17.