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