git.codelabs.ch
/
muen
/
linux.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
selftests: Fix installation for splice test
[muen/linux.git]
/
tools
/
testing
/
selftests
/
splice
/
default_file_splice_read.c
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
}