Deleted Added
full compact
s_nexttoward.c (143217) s_nexttoward.c (176451)
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
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#ifndef lint
14static char rcsid[] = "$FreeBSD: head/lib/msun/src/s_nexttoward.c 143217 2005-03-07 04:56:46Z das $";
15#endif
13#include <sys/cdefs.h>
14__FBSDID("$FreeBSD: head/lib/msun/src/s_nexttoward.c 176451 2008-02-22 02:30:36Z das $");
16
17/*
18 * We assume that a long double has a 15-bit exponent. On systems
19 * where long double is the same as double, nexttoward() is an alias
20 * for nextafter(), so we don't use this routine.
21 */
22
23#include <float.h>

--- 50 unchanged lines hidden ---
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 ---