diff options
Diffstat (limited to 'src/sysdeps/trysendfile.c')
-rw-r--r-- | src/sysdeps/trysendfile.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/sysdeps/trysendfile.c b/src/sysdeps/trysendfile.c new file mode 100644 index 0000000..6c99ad0 --- /dev/null +++ b/src/sysdeps/trysendfile.c @@ -0,0 +1,10 @@ +/* ISC license. */ + +#include <sys/types.h> +#include <sys/sendfile.h> + +int main (void) +{ + sendfile(1, 0, 0, 4096) ; + return 0 ; +} |