mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 18:56:10 +00:00
11 lines
157 B
C
11 lines
157 B
C
#include <include/valgrind.h>
|
|
#include <stdio.h>
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
int x = VALGRIND_PRINTF("Yo");
|
|
printf ("%d\n", x);
|
|
return 0;
|
|
}
|