mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
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:
parent
790973021f
commit
12c91ea883
1 changed files with 4 additions and 0 deletions
|
|
@ -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)
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue