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