From owner-freebsd-commit Sat Oct 7 17:06:40 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id RAA03687 for freebsd-commit-outgoing; Sat, 7 Oct 1995 17:06:40 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id RAA03674 for cvs-all-outgoing; Sat, 7 Oct 1995 17:06:36 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id RAA03664 for cvs-sys-outgoing; Sat, 7 Oct 1995 17:06:33 -0700 Received: (from swallace@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id RAA03654 ; Sat, 7 Oct 1995 17:06:24 -0700 Date: Sat, 7 Oct 1995 17:06:24 -0700 From: Steven Wallace Message-Id: <199510080006.RAA03654@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/sys systm.h Sender: owner-commit@FreeBSD.org Precedence: bulk swallace 95/10/07 17:06:23 Modified: sys/kern imgact_shell.c init_main.c kern_descrip.c kern_exec.c kern_exit.c kern_fork.c kern_prot.c vfs_bio.c vfs_syscalls.c sys/sys systm.h Log: Remove prototype definitions from . Prototypes are located in . Add appropriate #include to files that needed protos from systm.h. Add structure definitions to appropriate files that relied on sys/systm.h, right before system call definition, as in the rest of the kernel source. In kern_prot.c, instead of using the dummy structure "args", create individual dummy structures named _args. This makes life easier for prototype generation.