summaryrefslogtreecommitdiffstats
path: root/kernel/tests/include/lapi/splice.h
diff options
context:
space:
mode:
authorManuel Bentele2020-10-23 15:18:01 +0200
committerManuel Bentele2020-10-23 15:18:01 +0200
commitdbb41ce2b7f309d394054a6bd1e33afd578798a5 (patch)
tree6a31092063d9f2fb5ac5720ec6759040e793c3d5 /kernel/tests/include/lapi/splice.h
parentSet Linux kernel version to unknown if it is not detectable (diff)
downloadxloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.tar.gz
xloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.tar.xz
xloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.zip
Move the source code of all xloop components to the common 'src' directory
Diffstat (limited to 'kernel/tests/include/lapi/splice.h')
-rw-r--r--kernel/tests/include/lapi/splice.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/kernel/tests/include/lapi/splice.h b/kernel/tests/include/lapi/splice.h
deleted file mode 100644
index 0cd6f55..0000000
--- a/kernel/tests/include/lapi/splice.h
+++ /dev/null
@@ -1,22 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0-or-later
-/*
- * Copyright (c) International Business Machines Corp., 2007
- * Copyright (c) 2014 Fujitsu Ltd.
- */
-
-#ifndef SPLICE_H
-#define SPLICE_H
-
-#include "config.h"
-#include "lapi/syscalls.h"
-
-#if !defined(HAVE_SPLICE)
-ssize_t splice(int fd_in, loff_t *off_in, int fd_out,
- loff_t *off_out, size_t len, unsigned int flags)
-{
- return tst_syscall(__NR_splice, fd_in, off_in,
- fd_out, off_out, len, flags);
-}
-#endif
-
-#endif /* SPLICE_H */