new copyright; att/bsd/shared
[unix-history] / usr / src / lib / libc / gen / difftime.c
CommitLineData
5c8de42a
KB
1/*
2 * Copyright (c) 1989 The Regents of the University of California.
3 * All rights reserved.
4 *
269a7923 5 * %sccs.include.redist.c%
5c8de42a
KB
6 */
7
8#if defined(LIBC_SCCS) && !defined(lint)
269a7923 9static char sccsid[] = "@(#)difftime.c 5.2 (Berkeley) %G%";
5c8de42a
KB
10#endif /* LIBC_SCCS and not lint */
11
12#include <sys/types.h>
13
14double
15difftime(time1, time0)
16 time_t time1, time0;
17{
18 return(time1 - time0);
19}