Deleted Added
full compact
difftime.c (17209) difftime.c (71579)
1/*
2** This file is in the public domain, so clarified as of
3** June 5, 1996 by Arthur David Olson (arthur_david_olson@nih.gov).
1/*
2** This file is in the public domain, so clarified as of
3** June 5, 1996 by Arthur David Olson (arthur_david_olson@nih.gov).
4*
5* $FreeBSD: head/lib/libc/stdtime/difftime.c 71579 2001-01-24 13:01:12Z deischen $
4*/
5
6#ifndef lint
7#ifndef NOID
8static char elsieid[] = "@(#)difftime.c 7.7";
9#endif /* !defined NOID */
10#endif /* !defined lint */
11
12/*LINTLIBRARY*/
13
6*/
7
8#ifndef lint
9#ifndef NOID
10static char elsieid[] = "@(#)difftime.c 7.7";
11#endif /* !defined NOID */
12#endif /* !defined lint */
13
14/*LINTLIBRARY*/
15
16#include "namespace.h"
14#include "private.h"
17#include "private.h"
18#include "un-namespace.h"
15
16/*
17** Algorithm courtesy Paul Eggert (eggert@twinsun.com).
18*/
19
20#ifdef HAVE_LONG_DOUBLE
21#define long_double long double
22#endif /* defined HAVE_LONG_DOUBLE */

--- 55 unchanged lines hidden ---
19
20/*
21** Algorithm courtesy Paul Eggert (eggert@twinsun.com).
22*/
23
24#ifdef HAVE_LONG_DOUBLE
25#define long_double long double
26#endif /* defined HAVE_LONG_DOUBLE */

--- 55 unchanged lines hidden ---