mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
DARWIN branch, along with a few other minor things. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@9197
11 lines
154 B
C
11 lines
154 B
C
#include <stdlib.h>
|
|
|
|
int main(void)
|
|
{
|
|
int i;
|
|
for (i = 0; i < 200; i++) {
|
|
malloc(400*i); // Divisible by 16 -- no slop.
|
|
}
|
|
return 0;
|
|
}
|