7 int fd
= open("foo", O_RDWR
|O_CREAT
, 0666);
9 posix_fallocate(fd
, 0, 400000);
13 posix_fallocate(badfd
, x
, 20);
14 posix_fallocate(badfd
, 0, x
);
15 x
= posix_fallocate(badfd
, 0, 20);
17 fprintf(stderr
, "Unexpected return value: %d\n", x
);