View | Details | Raw Unified | Return to bug 20033
Collapse All | Expand All

(-)mysrc/contrib/libpcap/nametoaddr.c (-1 / +1 lines)
Lines 367-373 Link Here
367
#else
367
#else
368
368
369
#if !defined(sgi) && !defined(__NetBSD__)
369
#if !defined(sgi) && !defined(__NetBSD__)
370
extern int ether_hostton(char *, struct ether_addr *);
370
extern int ether_hostton(const char *, struct ether_addr *);
371
#endif
371
#endif
372
372
373
/* Use the os supplied routines */
373
/* Use the os supplied routines */
(-)mysrc/contrib/ipfilter/iplang/iplang_y.y (-1 / +1 lines)
Lines 49-55 Link Here
49
#include "iplang.h"
49
#include "iplang.h"
50
50
51
#ifndef __NetBSD__
51
#ifndef __NetBSD__
52
extern	struct ether_addr *ether_aton __P((char *));
52
extern	struct ether_addr *ether_aton __P((const char *));
53
#endif
53
#endif
54
54
55
extern	int	opts;
55
extern	int	opts;
(-)mysrc/usr.sbin/wlconfig/wlconfig.c (-1 / +1 lines)
Lines 69-75 Link Here
69
#include <net/if.h>
69
#include <net/if.h>
70
#include <netinet/in.h>
70
#include <netinet/in.h>
71
#include <netinet/if_ether.h>
71
#include <netinet/if_ether.h>
72
extern struct ether_addr *ether_aton(char *a);
72
extern struct ether_addr *ether_aton(const char *a);
73
73
74
#include <err.h>
74
#include <err.h>
75
#include <stdio.h>
75
#include <stdio.h>

Return to bug 20033