]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/valgrind/src/valgrind-3.6.0-svn/none/tests/floored.c
update
[l4.git] / l4 / pkg / valgrind / src / valgrind-3.6.0-svn / none / tests / floored.c
1
2 #include <math.h>
3 #include <stdio.h>
4
5 int xToI ( );
6
7 int main ( void )
8 {
9    printf ( "the answer is %d\n", xToI () );
10    return 0;
11 }
12
13
14 int xToI()
15 {
16     return (int)floor(2.90) + 1;
17 }
18