Make it build under 3.x

Submitted by:	fsmp
This commit is contained in:
msmith 1997-05-23 04:04:17 +00:00
parent 20e26deb2a
commit d2dfa44599
2 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# $Id$
# $Id: Makefile,v 1.1.1.1 1997/05/22 08:58:18 msmith Exp $
PROG= wlconfig
SRCS= wlconfig.c
CFLAGS+= Wall
CFLAGS+= -Wall
MAN8= wlconfig.8
.include <bsd.prog.mk>

View File

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id$
* $Id: wlconfig.c,v 1.1.1.1 1997/05/22 08:58:18 msmith Exp $
*
*/
/*
@ -60,9 +60,11 @@
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/time.h>
#include <machine/if_wl_wavelan.h>
#include <net/if.h>
#include <net/if_var.h>
#include <netinet/in.h>
#include <netinet/if_ether.h>
extern struct ether_addr *ether_aton(char *a);