OpenBSD-4.6/regress/gnu/egcs/gcc-bounds/getcwd-4.c

Compare this file to the similar file:
Show the results in this format:

#include <unistd.h>

int main(int argc, char **argv) {
	/* XXX - is this worth warning for? right now nothing */
	char buf[1024];
	getcwd(buf, 10);
	return 1;
}