repo.or.cz
/
valgrind.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add missing zstd.h to coregrind Makefile.am noinst_HEADERS
[valgrind.git]
/
memcheck
/
tests
/
client-msg.c
blob
cdcf43d107e14ea65eba00879ec62c8bfdcf7b8e
1
#include
"valgrind.h"
2
3
void
baz
()
4
{
5
VALGRIND_PRINTF_BACKTRACE
(
"hello <> %s%%s world
\n
"
,
"<&>"
);
6
}
7
8
void
bar
()
9
{
10
baz
();
11
}
12
13
void
foo
()
14
{
15
bar
();
16
}
17
18
int
main
()
19
{
20
foo
();
21
22
return
0
;
23
}
24