summaryrefslogtreecommitdiff
path: root/regress/gnu/egcs/gcc-bounds/declare-5.c
blob: b0dbc6b96703ca61d1f8981a01e7b0815ffd4a4a (plain)
1
2
3
4
5
6
void my_func(char *, int)
	__attribute__((__bounded__(__minbytes__,1,1024)));

int main(int argc, char **argv) {
	return 1;
}