mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 01:28:00 -04:00
o Add missing $Id$s
o Move extern decls from .c -> .h files
o Staticize
o Remove #includes from .h files
o style(9)ify includes
o bcopy -> memcpy
bzero -> memset
bcmp -> memcmp
index -> strchr
rindex -> strrchr
o Move timeout.h -> timer.h (making it consistent w/ timer.c)
o Add -Wmissing-prototypes
8 lines
182 B
C
8 lines
182 B
C
/*
|
|
* $Id: $
|
|
*/
|
|
|
|
extern void AsyncInit(void);
|
|
extern void SetLinkParams(struct lcpstate *);
|
|
extern void AsyncOutput(int, struct mbuf *, int);
|
|
extern void AsyncInput(u_char *, int);
|