Deleted Added
full compact
s_cosf.c (152949) s_cosf.c (176451)
1/* s_cosf.c -- float version of s_cos.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
3 * Optimized by Bruce D. Evans.
4 */
5
6/*
7 * ====================================================
8 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
9 *
10 * Developed at SunPro, a Sun Microsystems, Inc. business.
11 * Permission to use, copy, modify, and distribute this
12 * software is freely granted, provided that this notice
13 * is preserved.
14 * ====================================================
15 */
16
1/* s_cosf.c -- float version of s_cos.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
3 * Optimized by Bruce D. Evans.
4 */
5
6/*
7 * ====================================================
8 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
9 *
10 * Developed at SunPro, a Sun Microsystems, Inc. business.
11 * Permission to use, copy, modify, and distribute this
12 * software is freely granted, provided that this notice
13 * is preserved.
14 * ====================================================
15 */
16
17#ifndef lint
18static char rcsid[] = "$FreeBSD: head/lib/msun/src/s_cosf.c 152949 2005-11-30 06:47:18Z bde $";
19#endif
17#include <sys/cdefs.h>
18__FBSDID("$FreeBSD: head/lib/msun/src/s_cosf.c 176451 2008-02-22 02:30:36Z das $");
20
21#include "math.h"
22#define INLINE_KERNEL_COSDF
23#define INLINE_KERNEL_SINDF
24#include "math_private.h"
25#include "k_cosf.c"
26#include "k_sinf.c"
27

--- 57 unchanged lines hidden ---
19
20#include "math.h"
21#define INLINE_KERNEL_COSDF
22#define INLINE_KERNEL_SINDF
23#include "math_private.h"
24#include "k_cosf.c"
25#include "k_sinf.c"
26

--- 57 unchanged lines hidden ---