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
filter out in /absolute/path in drd/tests stderr filter
[valgrind.git]
/
massif
/
tests
/
culling1.c
blob
d6f4ce838fe67cae407100ce336e6d0a6548ba72
1
#include <stdlib.h>
2
3
int
main
(
void
)
4
{
5
int
i
;
6
for
(
i
=
0
;
i
<
200
;
i
++) {
7
malloc
(
16
);
// divisible by 16 -- no slop
8
}
9
return
0
;
10
}