xref: /openbsd-src/regress/gnu/egcs/gcc-bounds/declare-3.c (revision 3caf9e4f131048624709282fc1e8006a32cd1c45)
1 void my_func(char *, int)
2 	__attribute__((__bounded__(__string__,1,"foo")));
3 
main(int argc,char ** argv)4 int main(int argc, char **argv) {
5 	return 1;
6 }
7