Deleted Added
full compact
infinity.c (103686) infinity.c (106268)
1/* $NetBSD: infinity.c,v 1.1 1995/02/10 17:50:23 cgd Exp $ */
2
3/*
4 * Copyright (c) 1994, 1995 Carnegie-Mellon University.
5 * All rights reserved.
6 *
7 * Author: Chris G. Demetriou
8 *

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

23 * Carnegie Mellon University
24 * Pittsburgh PA 15213-3890
25 *
26 * any improvements or extensions that they make and grant Carnegie the
27 * rights to redistribute these changes.
28 */
29
30#include <sys/cdefs.h>
1/* $NetBSD: infinity.c,v 1.1 1995/02/10 17:50:23 cgd Exp $ */
2
3/*
4 * Copyright (c) 1994, 1995 Carnegie-Mellon University.
5 * All rights reserved.
6 *
7 * Author: Chris G. Demetriou
8 *

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

23 * Carnegie Mellon University
24 * Pittsburgh PA 15213-3890
25 *
26 * any improvements or extensions that they make and grant Carnegie the
27 * rights to redistribute these changes.
28 */
29
30#include <sys/cdefs.h>
31__FBSDID("$FreeBSD: head/lib/libc/ia64/gen/infinity.c 103686 2002-09-20 15:43:26Z archie $");
31__FBSDID("$FreeBSD: head/lib/libc/ia64/gen/infinity.c 106268 2002-10-31 23:05:20Z archie $");
32
33#include <math.h>
34
35/* bytes for +Infinity on an ia64 (IEEE double format) */
32
33#include <math.h>
34
35/* bytes for +Infinity on an ia64 (IEEE double format) */
36char __infinity[] = { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f };
36const union __infinity_un __infinity = { { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f } };