aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/fdatasync.c
blob: 594ad8f03004948bbe63c8424607eecad8538a8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright (c) 2013 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * int fdatasync(int fd)
 *	int rc = -1;
 */

	/* note: wrapper will never call this if PSEUDO_FORCE_ASYNC
	 * is defined.
	 */
	rc = real_fdatasync(fd);

/*	return rc;
 * }
 */