OpenBSD-4.6/regress/gnu/egcs/gcc-bounds/vararray-3.c

Compare this file to the similar file:
Show the results in this format:

#include <stdio.h>

int
main(int argc, char **argv)
{
	int a;
	char buf[10], buf2[a];
	sscanf(buf, "%s", buf2);
	return 1;
}