clarify licensing
[nestedvm.git] / src / tests / Simple.c
index bb8452e..c943264 100644 (file)
@@ -1,9 +1,10 @@
-#include <string.h>
+#include <math.h>
 
-char *a = "bar";
-
-volatile char buf[] = "Hello World";
+double d = -1.23;
 
 int _start() {
-    return strlen("foo");
+       int n;
+    d = fabs(d);
+    n = (int)(d*100);
+       return n;;
 }