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

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