You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
448 B
30 lines
448 B
|
|
#include <stdio.h> |
|
#include "../../include/valgrind.h" |
|
|
|
|
|
|
|
|
|
int fooble ( void ) |
|
{ |
|
int x, y; |
|
y = 0; |
|
for (x = 0; x < 100; x++) { |
|
if ((x % 3) == 0) y += x; else y++; |
|
} |
|
return y; |
|
} |
|
|
|
void someother ( void ) |
|
{ |
|
} |
|
|
|
int main ( void ) |
|
{ |
|
printf("fooble-1() = %d\n", fooble() ); |
|
VALGRIND_DISCARD_TRANSLATIONS( (char*)(&fooble), |
|
((char*)(&someother)) - ((char*)(&fooble)) ); |
|
printf("fooble-2() = %d\n", fooble() ); |
|
return 0; |
|
} |
|
|
|
|