glibc/tests/Sanity/bz1476120-glibc-headers-don-t-include-linux-falloc-h-and/tst-falloc.c

8 lines
145 B
C
Raw Normal View History

2023-04-03 23:55:48 +00:00
#define _GNU_SOURCE
#include <fcntl.h>
int test(int fd)
{
return fallocate(fd, FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
0, 1024 * 1024);
}