misc test changes
[nestedvm.git] / src / tests / Test.c
index 659254b..b7b35b5 100644 (file)
@@ -210,8 +210,8 @@ int main(int argc, char **argv) {
     
     {
         double d = -2.34;
-        //d = abs(d);
-        printf("abs(-2.24) = %g\n",d);
+        d = fabs(d);
+        printf("fabs(-2.24) = %g\n",d);
     }