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