mirror of
git://sourceware.org/git/valgrind.git
synced 2026-01-19 00:08:14 +08:00
should go to the XML stream not stderr. Fixes BZ 322807. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13516
25 lines
195 B
C
25 lines
195 B
C
#include "valgrind.h"
|
|
|
|
void baz()
|
|
{
|
|
VALGRIND_PRINTF_BACKTRACE("hello <> %s%%s world\n","<&>");
|
|
}
|
|
|
|
void bar()
|
|
{
|
|
baz();
|
|
}
|
|
|
|
void foo()
|
|
{
|
|
bar();
|
|
}
|
|
|
|
int main()
|
|
{
|
|
foo();
|
|
|
|
return 0;
|
|
}
|
|
|