Nicholas Nethercote c4d186f121 Removed no-longer-needed declarations of __SOME_SKIN_H.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2025
2003-11-13 23:02:16 +00:00

31 lines
448 B
C

#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;
}