blob: 7f5b0ee80a4703a0e713222ef4d1a57a7d506bb5 [file] [log] [blame]
#include <stdlib.h>
int main ( void )
{
volatile int* a = malloc(1000);
a[0] = 0;
return a[0];
}