shithub: 5v

ref: f9198297ea2bc1c3971f5b3fd473e45a8fb0d10c
dir: /test.c/

View raw version
#include <u.h>
#include <libc.h>

void
main(int argc, char **argv)
{
	char *x;
	int a[1024];
	int y;

	x = malloc(123);
	x[1] = 123;
	y = x[1];
	argv[0][0] = y;
	free(x);
	argv[0][0] = x[0];
	exits(x);
}