OpenBSD-4.6/regress/gnu/egcs/gcc-bounds/sscanf-4.c

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

#include <stdio.h>

int main(int argc, char **argv) {
	char q[10];
	char buf1[10];
	sscanf(q,"%10c",buf1);
	return 1;
}