Skip to content
Snippets Groups Projects
Commit 2d12288e authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

cdilib update

parent 98f7d079
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,11 @@ char *strdup(const char *s);
#define DATE_IS_NEQ(dtstr1, dtstr2, len) (memcmp(dtstr1, dtstr2, len) != 0)
/* performance problems on IBM
#if defined (__ibm__) /* performance problems on IBM */
#ifndef DBL_IS_NAN
# define DBL_IS_NAN(x) ((x) != (x))
#endif
#else
#ifndef DBL_IS_NAN
#if defined (HAVE_ISNAN)
# define DBL_IS_NAN(x) (isnan(x))
......@@ -67,10 +71,6 @@ char *strdup(const char *s);
# define DBL_IS_NAN(x) ((x) != (x))
#endif
#endif
*/
#ifndef DBL_IS_NAN
# define DBL_IS_NAN(x) ((x) != (x))
#endif
#ifndef DBL_IS_EQUAL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment