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
9int
10fdatasync(int fd)
11{
12	return (fsync(fd));
13}
14