Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
valgrind
/
cfc39b2401888727e2c4816b63f7a6efa1d99774
/
.
/
tests
/
manuel3.c
blob: 44ab712e42503527c361f761da3b85678be52245 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<malloc.h>
int
main
()
{
int
*
x
,
y
;
x
=
(
int
*)
malloc
(
sizeof
(
int
));
y
=
*
x
==
173
;
printf
(
"x = %d\n"
,
y
);
}