mirror of
https://github.com/opnsense/src.git
synced 2026-03-01 21:01:24 -05: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
9 lines
150 B
C
9 lines
150 B
C
/*
|
|
* $Id: $
|
|
*/
|
|
|
|
extern int server;
|
|
|
|
extern int ServerLocalOpen(const char *, mode_t);
|
|
extern int ServerTcpOpen(int);
|
|
extern void ServerClose(void);
|