GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: lib/libc/gen/fdatasync.c Lines: 0 1 0.0 %
Date: 2017-11-07 Branches: 0 0 0.0 %

Line Branch Exec Source
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
}