xref
: /
haiku
/
src
/
system
/
libroot
/
posix
/
musl
/
time
/
difftime.c
(revision 4a55cc230cf7566cadcbb23b1928eefff8aea9a2)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
#
include
<
time.h
>
2
3
double
difftime
(
time_t
t1
,
time_t
t0
)
4
{
5
return
t1
-
t0
;
6
}
7