OpenBSD-4.6/regress/gnu/egcs/gcc-bounds/getcwd-3.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) + 2000);
	return 1;
}