GCC Code Coverage Report | |||||||||||||||||||||
|
|||||||||||||||||||||
Line | Branch | Exec | Source |
1 |
/* $OpenBSD: timer_create.c,v 1.7 2015/09/12 13:13:34 guenther Exp $ */ |
||
2 |
|||
3 |
#include <signal.h> |
||
4 |
#include <time.h> |
||
5 |
#include <errno.h> |
||
6 |
|||
7 |
struct sigevent; |
||
8 |
|||
9 |
int timer_create(clockid_t, struct sigevent *, timer_t *); |
||
10 |
PROTO_DEPRECATED(timer_create); |
||
11 |
|||
12 |
int |
||
13 |
timer_create(clockid_t clock_id, struct sigevent *evp, timer_t *timerid) |
||
14 |
{ |
||
15 |
errno = ENOSYS; |
||
16 |
return -1; |
||
17 |
} |
Generated by: GCOVR (Version 3.3) |