Nicholas Nethercote a1527f6993 Move a heap of tests from corecheck/tests/ into none/tests/. There's
no real point in having them in corecheck/tests since they're not testing
anything that Nulgrind doesn't provide.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4048
2005-06-29 03:46:32 +00:00

11 lines
149 B
C

#include "valgrind.h"
#include <stdio.h>
int
main (int argc, char **argv)
{
int x = VALGRIND_PRINTF("Yo");
printf ("%d\n", x);
return 0;
}