Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
valgrind
/
e299020af8e770fff967900281a202f6264cfd5e
/
.
/
massif
/
tests
/
culling1.c
blob: d6f4ce838fe67cae407100ce336e6d0a6548ba72 [
file
] [
log
] [
blame
]
#include
<stdlib.h>
int
main
(
void
)
{
int
i
;
for
(
i
=
0
;
i
<
200
;
i
++)
{
malloc
(
16
);
// divisible by 16 -- no slop
}
return
0
;
}