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

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