Deleted Added
full compact
e_fmodf.c (97407) e_fmodf.c (176451)
1/* e_fmodf.c -- float version of e_fmod.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
3 */
4
5/*
6 * ====================================================
7 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
8 *
9 * Developed at SunPro, a Sun Microsystems, Inc. business.
10 * Permission to use, copy, modify, and distribute this
11 * software is freely granted, provided that this notice
12 * is preserved.
13 * ====================================================
14 */
15
1/* e_fmodf.c -- float version of e_fmod.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
3 */
4
5/*
6 * ====================================================
7 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
8 *
9 * Developed at SunPro, a Sun Microsystems, Inc. business.
10 * Permission to use, copy, modify, and distribute this
11 * software is freely granted, provided that this notice
12 * is preserved.
13 * ====================================================
14 */
15
16#ifndef lint
17static char rcsid[] = "$FreeBSD: head/lib/msun/src/e_fmodf.c 97407 2002-05-28 17:03:12Z alfred $";
18#endif
16#include <sys/cdefs.h>
17__FBSDID("$FreeBSD: head/lib/msun/src/e_fmodf.c 176451 2008-02-22 02:30:36Z das $");
19
20/*
21 * __ieee754_fmodf(x,y)
22 * Return x mod y in exact arithmetic
23 * Method: shift and subtract
24 */
25
26#include "math.h"

--- 79 unchanged lines hidden ---
18
19/*
20 * __ieee754_fmodf(x,y)
21 * Return x mod y in exact arithmetic
22 * Method: shift and subtract
23 */
24
25#include "math.h"

--- 79 unchanged lines hidden ---