aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/fsync.c
blob: 6c87a569a66f9b03738c55e1da6625f02dae5a64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) 2013 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * int fsync(int fd)
 *	int rc = -1;
 */

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

/*	return rc;
 * }
 */