Deleted Added
sdiff udiff text old ( 143217 ) new ( 176451 )
full compact
1/* @(#)s_nextafter.c 5.1 93/09/24 */
2/*
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5 *
6 * Developed at SunPro, a Sun Microsystems, Inc. business.
7 * Permission to use, copy, modify, and distribute this
8 * software is freely granted, provided that this notice
9 * is preserved.
10 * ====================================================
11 */
12
13#include <sys/cdefs.h>
14__FBSDID("$FreeBSD: head/lib/msun/src/s_nexttoward.c 176451 2008-02-22 02:30:36Z das $");
15
16/*
17 * We assume that a long double has a 15-bit exponent. On systems
18 * where long double is the same as double, nexttoward() is an alias
19 * for nextafter(), so we don't use this routine.
20 */
21
22#include <float.h>

--- 50 unchanged lines hidden ---