diff options
author | phk <phk@FreeBSD.org> | 2000-10-29 16:06:56 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2000-10-29 16:06:56 +0000 |
commit | ff5cdfae2d43687676881bd95b27cb1781a8baab (patch) | |
tree | 3a0dc85f55280f8af0b29effb14ef7ca2aacb220 /sys/netipx | |
parent | 9c7c34c6a0baffc7ddae058f6497b0246a417f78 (diff) | |
download | FreeBSD-src-ff5cdfae2d43687676881bd95b27cb1781a8baab.zip FreeBSD-src-ff5cdfae2d43687676881bd95b27cb1781a8baab.tar.gz |
Move suser() and suser_xxx() prototypes and a related #define from
<sys/proc.h> to <sys/systm.h>.
Correctly document the #includes needed in the manpage.
Add one now needed #include of <sys/systm.h>.
Remove the consequent 48 unused #includes of <sys/proc.h>.
Diffstat (limited to 'sys/netipx')
-rw-r--r-- | sys/netipx/ipx.c | 1 | ||||
-rw-r--r-- | sys/netipx/ipx_pcb.c | 1 | ||||
-rw-r--r-- | sys/netipx/ipx_usrreq.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/sys/netipx/ipx.c b/sys/netipx/ipx.c index 5035256..7ba85ae 100644 --- a/sys/netipx/ipx.c +++ b/sys/netipx/ipx.c @@ -40,7 +40,6 @@ #include <sys/systm.h> #include <sys/malloc.h> #include <sys/sockio.h> -#include <sys/proc.h> #include <sys/socket.h> #include <net/if.h> diff --git a/sys/netipx/ipx_pcb.c b/sys/netipx/ipx_pcb.c index 034751b..61af5c3 100644 --- a/sys/netipx/ipx_pcb.c +++ b/sys/netipx/ipx_pcb.c @@ -39,7 +39,6 @@ #include <sys/param.h> #include <sys/systm.h> #include <sys/malloc.h> -#include <sys/proc.h> #include <sys/socket.h> #include <sys/socketvar.h> diff --git a/sys/netipx/ipx_usrreq.c b/sys/netipx/ipx_usrreq.c index e674262..22b2e2f 100644 --- a/sys/netipx/ipx_usrreq.c +++ b/sys/netipx/ipx_usrreq.c @@ -42,7 +42,6 @@ #include <sys/systm.h> #include <sys/kernel.h> #include <sys/mbuf.h> -#include <sys/proc.h> #include <sys/protosw.h> #include <sys/socket.h> #include <sys/socketvar.h> |