xref: /openbsd/regress/gnu/egcs/gcc-bounds/getcwd-4.c (revision 898184e3)
1 #include <unistd.h>
2 
3 int main(int argc, char **argv) {
4 	/* XXX - is this worth warning for? right now nothing */
5 	char buf[1024];
6 	getcwd(buf, 10);
7 	return 1;
8 }
9