2 * Copyright (C) 2011 David Goulet <dgoulet@efficios.com>
4 * SPDX-License-Identifier: LGPL-2.1-only
9 #include <common/compat/fcntl.hpp>
10 #include <common/macros.hpp>
16 int compat_sync_file_range(int fd
, off_t offset
, off_t nbytes
, unsigned int flags
)
18 #ifdef HAVE_SYNC_FILE_RANGE
19 return sync_file_range(fd
, offset
, nbytes
, flags
);
25 #endif /* __linux__ */
This page took 0.028942 seconds and 4 git commands to generate.