misc test changes
[nestedvm.git] / src / tests / Simple.c
1 #include <math.h>
2
3 double d = -1.23;
4
5 int _start() {
6         int n;
7     d = fabs(d);
8     n = (int)(d*100);
9         return n;;
10 }