summaryrefslogtreecommitdiffstats
path: root/src/kernel/tests/include/lapi/splice.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/tests/include/lapi/splice.h')
-rw-r--r--src/kernel/tests/include/lapi/splice.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/kernel/tests/include/lapi/splice.h b/src/kernel/tests/include/lapi/splice.h
new file mode 100644
index 0000000..0cd6f55
--- /dev/null
+++ b/src/kernel/tests/include/lapi/splice.h
@@ -0,0 +1,22 @@
+// 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 */