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