From a379f75853514c754597c105ff72d5aaf9d40bc8 Mon Sep 17 00:00:00 2001 From: rgrimes Date: Wed, 6 Aug 1997 00:45:23 +0000 Subject: Add #if __FreeBSD__ >= 3 around #include so that this can compile under both FreeBSD 2.x and 3.x. --- usr.sbin/wlconfig/wlconfig.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/usr.sbin/wlconfig/wlconfig.c b/usr.sbin/wlconfig/wlconfig.c index 696c089..51153f9 100644 --- a/usr.sbin/wlconfig/wlconfig.c +++ b/usr.sbin/wlconfig/wlconfig.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: wlconfig.c,v 1.2 1997/05/23 21:46:50 trost Exp $ + * $Id: wlconfig.c,v 1.3 1997/08/01 03:50:23 msmith Exp $ * */ /* @@ -64,7 +64,9 @@ #include #include +#if __FreeBSD__ >= 3 #include +#endif #include #include extern struct ether_addr *ether_aton(char *a); -- cgit v1.1