Files
ftmemsim-valgrind/VEX/head20041019/corecheck/tests/vgprintf.c
Julian Seward 074ebfd812 Add a complete copy of the cvs head as of 19 Oct 04, for experimenting
with integration purposes.



git-svn-id: svn://svn.valgrind.org/vex/trunk@369
2004-10-19 13:11:35 +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;
}