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

Line Branch Exec Source
1
/*	$OpenBSD: timer_settime.c,v 1.7 2015/09/12 13:13:34 guenther Exp $ */
2
3
#include <time.h>
4
#include <errno.h>
5
6
int	timer_settime(timer_t, int, const struct itimerspec *,
7
	    struct itimerspec *);
8
PROTO_DEPRECATED(timer_settime);
9
10
int
11
timer_settime(timer_t timerid, int flags, const struct itimerspec *value,
12
    struct itimerspec *ovalue)
13
{
14
	errno = ENOSYS;
15
	return -1;
16
}