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