diff options
author | 2009-06-12 09:50:16 +0000 | |
---|---|---|
committer | 2009-06-12 09:50:16 +0000 | |
commit | 19569a6b846df2cd5d567a6ba284c0b4223901bb (patch) | |
tree | 40168eed6df9db59383194b2a74b052bdd661907 | |
parent | make the interrupt handler in install.sub print a linefeed and also make (diff) | |
download | wireguard-openbsd-19569a6b846df2cd5d567a6ba284c0b4223901bb.tar.xz wireguard-openbsd-19569a6b846df2cd5d567a6ba284c0b4223901bb.zip |
add missing header needed by warn()
ok henning@
-rw-r--r-- | usr.sbin/rtsold/if.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/rtsold/if.c b/usr.sbin/rtsold/if.c index c9804dc0116..366a8fdd57b 100644 --- a/usr.sbin/rtsold/if.c +++ b/usr.sbin/rtsold/if.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if.c,v 1.23 2009/06/04 22:45:32 henning Exp $ */ +/* $OpenBSD: if.c,v 1.24 2009/06/12 09:50:16 chl Exp $ */ /* $KAME: if.c,v 1.18 2002/05/31 10:10:03 itojun Exp $ */ /* @@ -48,6 +48,7 @@ #include <netinet6/in6_var.h> +#include <err.h> #include <stdio.h> #include <unistd.h> #include <stdlib.h> |