difftime.c - vx32 - Local 9vx git repository for patches.
 (HTM) git clone git://r-36.net/vx32
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       difftime.c (74B)
       ---
            1 #include <time.h>
            2 
            3 double difftime(time_t a, time_t b)
            4 {
            5         return a - b;
            6 }