blob: 0536ee47ee4ff34d5fc821928e6d565124317e0f [file] [log] [blame]
#include <stdlib.h>
int main(void)
{
int i;
for (i = 0; i < 200; i++) {
malloc(i);
}
return 0;
}