home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / fortran / library / whets / second.c < prev    next >
C/C++ Source or Header  |  1994-07-05  |  176b  |  10 lines

  1. #include <sys/types.h>
  2. #include <sys/times.h>
  3. float
  4. second_()
  5. {
  6.     struct tms buf;
  7.     times(&buf);
  8.     return(buf.tms_utime*0.02);         /* 1 tick = 1/50 sec */
  9. }
  10.