FreeBSD: add file descriptor tracking for _umtx_op
[valgrind.git] / none / tests / floored.c
blob678a4f52625d3c92fe3197579cae5f1769ca3b47
2 #include <math.h>
3 #include <stdio.h>
5 int xToI ( );
7 int main ( void )
9 printf ( "the answer is %d\n", xToI () );
10 return 0;
14 int xToI()
16 return (int)floor(2.90) + 1;