freebsd-ports/math/grace/files/patch-ai

17 lines
352 B
Text

*** cmath.h.org Thu Mar 27 13:57:30 2003
--- cmath.h Thu Mar 27 13:59:41 2003
***************
*** 170,174 ****
--- 170,181 ----
#endif
#ifndef HAVE_ISNAN_DECL
+ #ifdef __FreeBSD__
+ # include <sys/param.h>
+ # if __FreeBSD_version < 500100
+ extern int isnan ( double x );
+ # endif
+ #endif
+ #else
extern int isnan ( double x );
#endif