revert last commit, simply insane

This commit is contained in:
rlar 2012-01-13 16:47:32 +00:00
parent 8b4cbf05c9
commit dc2938812b
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-01-13 Robert Larice
* src/include/ngspice/missing_math.h :
revert last commit, simply insane
checking for being a macro is already done with HAVE_DECL_ISNAN
2012-01-11 Robert Larice
* src/include/ngspice/missing_math.h :
wrap isnan declaration, isnan is a macro on modern systems

View File

@ -26,7 +26,7 @@ extern double scalbn(double, int);
#endif
#if !HAVE_DECL_ISNAN
#if !defined(HAVE_ISNAN) && !defined(isnan)
#ifndef HAVE_ISNAN
extern int isnan(double);
#endif
#endif