Added binary and unicode file i/o support to msvcrt.
[reactos.git] / reactos / lib / crtdll / time / difftime.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrt/time.h>
3
4 double
5 difftime(time_t time1, time_t time0)
6 {
7 return time1-time0;
8 }