mirror of
https://github.com/reactos/reactos.git
synced 2025-06-22 11:00:51 +00:00
11 lines
179 B
C
11 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;
|
|
}
|