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
FreeBSD regtest: add fakes for older versions in scalar
[valgrind.git]
/
memcheck
/
tests
/
manuel1.c
blob
39b6c9ef29ace0a314138fde7f9cb705a184c3dd
1
#include <stdio.h>
2
3
int
main
()
4
{
5
int
x
;
6
7
if
(
x
==
0xCAFEBABE
)
8
{
9
printf
(
"x = %d
\n
"
,
99
);
10
}
11
else
12
{
13
printf
(
"x = %d
\n
"
,
88
);
14
}
15
16
return
0
;
17
}