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