diff options
author | markm <markm@FreeBSD.org> | 2002-10-19 11:57:38 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2002-10-19 11:57:38 +0000 |
commit | 221c2ddb5d1cf112aaf5540a5787a551208ec4dc (patch) | |
tree | 7a6e62735db645a81173ed3ac234c89c633d70d0 /sys/i386/linux/linux_machdep.c | |
parent | 451ff53efa679aff57666e2a6dc6257e84c67724 (diff) | |
download | FreeBSD-src-221c2ddb5d1cf112aaf5540a5787a551208ec4dc.zip FreeBSD-src-221c2ddb5d1cf112aaf5540a5787a551208ec4dc.tar.gz |
Style(9). Make some function declarations consistent with the rest,
and remove some nearby extraneous {}'s.
Diffstat (limited to 'sys/i386/linux/linux_machdep.c')
-rw-r--r-- | sys/i386/linux/linux_machdep.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sys/i386/linux/linux_machdep.c b/sys/i386/linux/linux_machdep.c index 5ea1b5d..9f8c97a 100644 --- a/sys/i386/linux/linux_machdep.c +++ b/sys/i386/linux/linux_machdep.c @@ -602,9 +602,7 @@ linux_iopl(struct thread *td, struct linux_iopl_args *args) } int -linux_modify_ldt(td, uap) - struct thread *td; - struct linux_modify_ldt_args *uap; +linux_modify_ldt(struct thread *td, struct linux_modify_ldt_args *uap) { int error; caddr_t sg; @@ -734,9 +732,7 @@ linux_sigsuspend(struct thread *td, struct linux_sigsuspend_args *args) } int -linux_rt_sigsuspend(td, uap) - struct thread *td; - struct linux_rt_sigsuspend_args *uap; +linux_rt_sigsuspend(struct thread *td, struct linux_rt_sigsuspend_args *uap) { l_sigset_t lmask; sigset_t sigmask; |