summaryrefslogtreecommitdiff
path: root/regress/gnu/egcs/gcc-bounds/getcwd-4.c
blob: 81b4798708e45a6167c57fa6c2402f8ab39cf90c (plain)
1
2
3
4
5
6
7
8
#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;
}