diff options
author | 1998-02-07 20:50:54 +0000 | |
---|---|---|
committer | 1998-02-07 20:50:54 +0000 | |
commit | e513f4c5a3cf0cb384ac0889337f28bea1a6cef4 (patch) | |
tree | bf16ecbf84d92e7b9f2f423579adcd29a562ea92 /lib/libc/sys/timer_settime.c | |
parent | strftime is no longer in this directory (diff) | |
download | wireguard-openbsd-e513f4c5a3cf0cb384ac0889337f28bea1a6cef4.tar.xz wireguard-openbsd-e513f4c5a3cf0cb384ac0889337f28bea1a6cef4.zip |
Forward declare structures to silence warnings
Diffstat (limited to 'lib/libc/sys/timer_settime.c')
-rw-r--r-- | lib/libc/sys/timer_settime.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/sys/timer_settime.c b/lib/libc/sys/timer_settime.c index cbf5e07f35c..3925b89d393 100644 --- a/lib/libc/sys/timer_settime.c +++ b/lib/libc/sys/timer_settime.c @@ -1,11 +1,13 @@ #if defined(SYSLIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: timer_settime.c,v 1.3 1997/04/30 05:49:30 tholo Exp $"; +static char rcsid[] = "$OpenBSD: timer_settime.c,v 1.4 1998/02/07 20:50:55 tholo Exp $"; #endif /* SYSLIBC_SCCS and not lint */ #include <signal.h> #include <time.h> #include <errno.h> +struct itimerspec; + /* ARGSUSED */ int timer_settime(timerid, flags, value, ovalue) |