home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / mntlib25.zoo / difftime.c < prev    next >
C/C++ Source or Header  |  1992-10-09  |  155b  |  10 lines

  1. /* return difference between two time_t types -- ERS*/
  2.  
  3. #include <time.h>
  4.  
  5. double difftime(t2, t1)
  6. time_t t2, t1;
  7. {
  8.     return (double) (t2 - t1);
  9. }
  10.