xref: /linux/tools/testing/selftests/splice/default_file_splice_read.c (revision 0408c58be5a475c99b271f08d85859f7b59ec767)
1 #define _GNU_SOURCE
2 #include <fcntl.h>
3 
4 int main(int argc, char **argv)
5 {
6         splice(0, 0, 1, 0, 1<<30, 0);
7 	return 0;
8 }
9