xref: /openbsd-src/lib/libc/gen/fdatasync.c (revision 1ad61ae0a79a724d2d3ec69e69c8e1d1ff6b53a0)
1 /*	$OpenBSD: fdatasync.c,v 1.1 2013/04/15 16:38:21 matthew Exp $ */
2 /*
3  * Written by Matthew Dempsky, 2013.
4  * Public domain.
5  */
6 
7 #include <unistd.h>
8 
9 int
10 fdatasync(int fd)
11 {
12 	return (fsync(fd));
13 }
14