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

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

#include <unistd.h>

int main(int argc, char **argv) {
	char buf[10];
	getcwd(buf, sizeof(buf) - 1000);
	return 1;
}