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

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