Rename isnan, applicable to 'double' only, to isnand.
[gnulib.git] / tests / test-trunc2.c
index f3238ff..c06846d 100644 (file)
@@ -1,5 +1,5 @@
 /* Test of rounding towards zero.
-   Copyright (C) 2007 Free Software Foundation, Inc.
+   Copyright (C) 2007-2008 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -26,7 +26,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 
-#include "isnan.h"
+#include "isnand.h"
 
 #define ASSERT(expr) \
   do                                                                        \
@@ -103,7 +103,7 @@ trunc_reference (DOUBLE x)
 static int
 equal (DOUBLE x, DOUBLE y)
 {
-  return (isnan (x) ? isnan (y) : x == y);
+  return (isnand (x) ? isnand (y) : x == y);
 }
 
 /* Test whether the result for a given argument is correct.  */