summaryrefslogtreecommitdiffstats
path: root/src/kernel/tests/include/lapi/splice.h
blob: 0cd6f55d2772c9d1f6807c611cc543e93dcc0a7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 */