summaryrefslogtreecommitdiff
path: root/lib/libc/gen/fdatasync.c
blob: 26612123a2c07cc29f8a7b6296ae9354fbfb57fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*	$OpenBSD: fdatasync.c,v 1.1 2013/04/15 16:38:21 matthew Exp $ */
/*
 * Written by Matthew Dempsky, 2013.
 * Public domain.
 */

#include <unistd.h>

int
fdatasync(int fd)
{
	return (fsync(fd));
}