xref: /openbsd-src/regress/lib/libc/ieeefp/inf/inf.c (revision 938548da83ec2ad39f1902aae78ec79f672e6f90)
1 /*	$OpenBSD: inf.c,v 1.2 2002/02/18 11:24:13 art Exp $	*/
2 
3 /*
4  * Peter Valchev <pvalchev@openbsd.org> Public Domain, 2002.
5  */
6 
7 #include <math.h>
8 
9 int
10 main()
11 {
12 	if (isinf(HUGE_VAL))
13 		return 0;
14 
15 	return 1;
16 }
17