OpenBSD-4.6/regress/gnu/egcs/gcc-bounds/declare-14.c

#define TEST_SIZE 32

void my_func(char *, int, int)
	__attribute__((__bounded__(__minbytes__,1,TEST_SIZE)));

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