Alias isinff to isinf on FreeBSD

isinf on FreeBSD automatically picks the appropriate type per math.h

Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
Enji Cooper 2014-11-16 20:37:46 +00:00
parent 790973021f
commit 12c91ea883
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=274599

View File

@ -34,6 +34,10 @@ __RCSID("$NetBSD: t_pow.c,v 1.3 2014/03/03 10:39:08 martin Exp $");
#include <atf-c.h>
#include <math.h>
#ifdef __FreeBSD__
#define isinff isinf
#endif
/*
* pow(3)
*/