mirror of
https://github.com/reactos/reactos.git
synced 2025-06-22 19:00:56 +00:00
12 lines
179 B
C
12 lines
179 B
C
![]() |
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
||
|
#include <precomp.h>
|
||
|
|
||
|
/*
|
||
|
* @implemented
|
||
|
*/
|
||
|
double
|
||
|
difftime(time_t time1, time_t time0)
|
||
|
{
|
||
|
return time1-time0;
|
||
|
}
|