blob: 428d1684fc2613422db48b8545f7e645b182f182 (
plain) (
tree)
|
|
#include "lib.h"
#include <stdio.h>
int main(void)
{
puts("Started the test program.");
fflush(stdout);
printf("This will crash: %d.\n", data->x);
puts("You shouldn't see this.");
fflush(stdout);
return 0;
}
|