summaryrefslogtreecommitdiff
path: root/regress/gnu/egcs/gcc-bounds/getcwd-2.c
blob: bd007c64b11e95780a7c5740d739d8167884473c (plain)
1
2
3
4
5
6
7
#include <unistd.h>

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