diff options
Diffstat (limited to 'compat/time32/difftime32.c')
-rw-r--r-- | compat/time32/difftime32.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/compat/time32/difftime32.c b/compat/time32/difftime32.c new file mode 100644 index 00000000..5950943a --- /dev/null +++ b/compat/time32/difftime32.c @@ -0,0 +1,7 @@ +#include "time32.h" +#include <time.h> + +double __difftime32(time32_t t1, time32_t t2) +{ + return difftime(t1, t2); +} |