mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
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
11 lines
149 B
C
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;
|
|
}
|