GCC Code Coverage Report | |||||||||||||||||||||
|
|||||||||||||||||||||
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 |
} |
Generated by: GCOVR (Version 3.3) |