X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Ftests%2FSimple.c;h=c9432644e706d2b6ee763e0461017fb80f58fb7d;hb=095d6d46361db8b4b69790305c0310ea114d3813;hp=b55c2727b4adb09f268876c37ab9fb303974a3df;hpb=3efa407f6606052b91cec5c98fab3f0a0a733b37;p=nestedvm.git diff --git a/src/tests/Simple.c b/src/tests/Simple.c index b55c272..c943264 100644 --- a/src/tests/Simple.c +++ b/src/tests/Simple.c @@ -1,11 +1,10 @@ -#include +#include -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;; }