revert last commit, simply insane
This commit is contained in:
parent
8b4cbf05c9
commit
dc2938812b
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue