Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
valgrind
/
e49d8e7dfd3a9c96feb9935b5920973dfc0b170a
/
.
/
memcheck
/
tests
/
manuel2.c
blob: 3b7135e212778e23dbcbe5bfa96eef38775b39b1 [
file
] [
log
] [
blame
]
njn25
e49d8e7
2002-09-23 09:36:25 +0000
[
diff
] [
blame^
]
1
#include
<stdio.h>
2
#include
<malloc.h>
3
4
int
main
()
5
{
6
int
*
x
;
7
8
printf
(
"x = %d\n"
,
*
x
==
0xDEADBEEF
?
99
:
88
);
9
10
return
0
;
11
}