Deleted Added
full compact
fixunsdfdi.c (1574) fixunsdfdi.c (92986)
1/*-
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This software was developed by the Computer Systems Engineering group
6 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
7 * contributed to Berkeley.
8 *

--- 24 unchanged lines hidden (view full) ---

33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 */
37
38#if defined(LIBC_SCCS) && !defined(lint)
39static char sccsid[] = "@(#)fixunsdfdi.c 8.1 (Berkeley) 6/4/93";
40#endif /* LIBC_SCCS and not lint */
1/*-
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This software was developed by the Computer Systems Engineering group
6 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
7 * contributed to Berkeley.
8 *

--- 24 unchanged lines hidden (view full) ---

33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 */
37
38#if defined(LIBC_SCCS) && !defined(lint)
39static char sccsid[] = "@(#)fixunsdfdi.c 8.1 (Berkeley) 6/4/93";
40#endif /* LIBC_SCCS and not lint */
41#include <sys/cdefs.h>
42__FBSDID("$FreeBSD: head/lib/libc/quad/fixunsdfdi.c 92986 2002-03-22 21:53:29Z obrien $");
41
42#include "quad.h"
43
44#define ONE_FOURTH (1 << (LONG_BITS - 2))
45#define ONE_HALF (ONE_FOURTH * 2.0)
46#define ONE (ONE_FOURTH * 4.0)
47
48/*

--- 48 unchanged lines hidden ---
43
44#include "quad.h"
45
46#define ONE_FOURTH (1 << (LONG_BITS - 2))
47#define ONE_HALF (ONE_FOURTH * 2.0)
48#define ONE (ONE_FOURTH * 4.0)
49
50/*

--- 48 unchanged lines hidden ---