diff options
author | 2015-01-03 06:09:36 +0000 | |
---|---|---|
committer | 2015-01-03 06:09:36 +0000 | |
commit | 970d3fa14aafbaea6f91b09c567a8addf6373c18 (patch) | |
tree | 6866f22539d54f7951e65fb90c9db559ad9e064c | |
parent | Check the return values of several reallocarray() calls. While here, (diff) | |
download | wireguard-openbsd-970d3fa14aafbaea6f91b09c567a8addf6373c18.tar.xz wireguard-openbsd-970d3fa14aafbaea6f91b09c567a8addf6373c18.zip |
move the list_cloners() prototype out of #ifndef SMALL
missed in rev 1.290
-rw-r--r-- | sbin/ifconfig/ifconfig.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ifconfig/ifconfig.c b/sbin/ifconfig/ifconfig.c index a32940ec4b5..92aab12aed1 100644 --- a/sbin/ifconfig/ifconfig.c +++ b/sbin/ifconfig/ifconfig.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ifconfig.c,v 1.290 2015/01/01 22:53:39 krw Exp $ */ +/* $OpenBSD: ifconfig.c,v 1.291 2015/01/03 06:09:36 jsg Exp $ */ /* $NetBSD: ifconfig.c,v 1.40 1997/10/01 02:19:43 enami Exp $ */ /* @@ -209,6 +209,7 @@ void settrunkport(const char *, int); void unsettrunkport(const char *, int); void settrunkproto(const char *, int); void trunk_status(void); +void list_cloners(void); #ifndef SMALL void carp_status(void); @@ -254,7 +255,6 @@ void unsetpflow_sender(const char *, int); void setpflow_receiver(const char *, int); void unsetpflow_receiver(const char *, int); void setpflowproto(const char *, int); -void list_cloners(void); void setifipdst(const char *, int); void setifdesc(const char *, int); void unsetifdesc(const char *, int); |