Moved misplaced extern declarations.

This commit is contained in:
Bruce Evans 1997-09-07 07:58:09 +00:00
parent 11461e556c
commit c92b100d9a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=29186
2 changed files with 2 additions and 1 deletions

View File

@ -57,7 +57,6 @@ struct at_aliasreq {
#define AFA_PHASE2 0x0004
#ifdef KERNEL
extern struct pr_usrreqs ddp_usrreqs;
extern struct at_ifaddr *at_ifaddr;
extern struct ifqueue atintrq1, atintrq2;
#endif

View File

@ -29,7 +29,9 @@ struct ddpstat {
};
#ifdef KERNEL
extern int ddp_cksum;
extern struct ddpcb *ddp_ports[ ];
extern struct ddpcb *ddpcb;
extern struct pr_usrreqs ddp_usrreqs;
#endif
#endif /* _NETATALK_DDP_VAR_H_ */