Deleted Added
full compact
s_cbrt.c (153548) s_cbrt.c (176451)
1/* @(#)s_cbrt.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 * Optimized by Bruce D. Evans.
13 */
14
1/* @(#)s_cbrt.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 * Optimized by Bruce D. Evans.
13 */
14
15#ifndef lint
16static char rcsid[] = "$FreeBSD: head/lib/msun/src/s_cbrt.c 153548 2005-12-20 01:21:30Z bde $";
17#endif
15#include <sys/cdefs.h>
16__FBSDID("$FreeBSD: head/lib/msun/src/s_cbrt.c 176451 2008-02-22 02:30:36Z das $");
18
19#include "math.h"
20#include "math_private.h"
21
22/* cbrt(x)
23 * Return cube root of x
24 */
25static const u_int32_t

--- 89 unchanged lines hidden ---
17
18#include "math.h"
19#include "math_private.h"
20
21/* cbrt(x)
22 * Return cube root of x
23 */
24static const u_int32_t

--- 89 unchanged lines hidden ---