Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. #include <time.h>
  3.  
  4. double difftime(time_t time1, time_t time0)
  5. {
  6.   return time1-time0;
  7. }
  8.