Julian Seward 80a34b21d6 Un-break 'make distcheck' yet again. I guess someone somewhere understands
how autoconf/automake really work, but not me :-)  What's the difference
between $(srcdir) and $(top_srcdir) (eg in coregrind/Makefile.am) ?


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2104
2003-12-13 03:07:40 +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;
}