xref: /openbsd-src/regress/gnu/egcs/gcc-bounds/snprintf-1.cpp (revision 3caf9e4f131048624709282fc1e8006a32cd1c45)
1 #include <stdio.h>
2 
main(int argc,char ** argv)3 int main(int argc, char **argv) {
4 	char buf[20];
5 	snprintf(buf, sizeof buf, "%s", "foo");
6 	return 1;
7 }
8