aboutsummaryrefslogtreecommitdiffstats
path: root/ports/darwin/guts/sync_file_range.c
blob: 229ccaaa94789ec68daf48e423b7902ec28a6c53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2013 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * int sync_file_range(int fd, off_t offset, off_t nbytes, unsigned int flags)
 *	int rc = -1;
 */

	rc = real_sync_file_range(fd, offset, nbytes, flags);

/*	return rc;
 * }
 */