xref: /openbsd/regress/gnu/egcs/gcc-bounds/sscanf-5.c (revision 09467b48)
1 #include <stdio.h>
2 
3 int main(int argc, char **argv) {
4 	char q[10];
5 	char buf1[10];
6 	sscanf(q,"%20c",buf1);
7 	return 1;
8 }
9