1 /* $OpenBSD: difftime.c,v 1.10 2015/02/09 08:36:53 tedu Exp $ */ 2 /* This file is placed in the public domain by Ted Unangst. */ 3 4 #include "private.h" 5 6 double 7 difftime(time_t time1, time_t time0) 8 { 9 return time1 - time0; 10 } 11