1*34ddfe61Sguenther /* $OpenBSD: timer_create.c,v 1.7 2015/09/12 13:13:34 guenther Exp $ */ 2fec2e44eStholo 3860d5110Stholo #include <signal.h> 4860d5110Stholo #include <time.h> 5860d5110Stholo #include <errno.h> 6860d5110Stholo 7e513f4c5Stholo struct sigevent; 8e513f4c5Stholo 9*34ddfe61Sguenther int timer_create(clockid_t, struct sigevent *, timer_t *); 10*34ddfe61Sguenther PROTO_DEPRECATED(timer_create); 11*34ddfe61Sguenther 12860d5110Stholo int timer_create(clockid_t clock_id,struct sigevent * evp,timer_t * timerid)13f723aa39Sderaadttimer_create(clockid_t clock_id, struct sigevent *evp, timer_t *timerid) 14860d5110Stholo { 15860d5110Stholo errno = ENOSYS; 16860d5110Stholo return -1; 17860d5110Stholo } 18