aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/imgact_aout.h
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1999-10-02 12:57:40 +0000
committerBruce Evans <bde@FreeBSD.org>1999-10-02 12:57:40 +0000
commit342079173e8720b832063262b8a295defb99d004 (patch)
treedade7e7040a8b3fc5b098a855bda1f4b2eacdec9 /sys/sys/imgact_aout.h
parentcec2aa9c057bb8ff4e15bafbd574539d1c256555 (diff)
downloadsrc-342079173e8720b832063262b8a295defb99d004.tar.gz
src-342079173e8720b832063262b8a295defb99d004.zip
Fixed style bugs in prototype for aout_coredump() (mainly wrapping it with
__BEGIN_DECLS/__END_DECLS to support C++ in 0.001% of the kernel).
Notes
Notes: svn path=/head/; revision=51868
Diffstat (limited to 'sys/sys/imgact_aout.h')
-rw-r--r--sys/sys/imgact_aout.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/sys/imgact_aout.h b/sys/sys/imgact_aout.h
index 873f1b25b3a5..6f7cd0cb024e 100644
--- a/sys/sys/imgact_aout.h
+++ b/sys/sys/imgact_aout.h
@@ -150,9 +150,7 @@ struct exec {
#ifdef KERNEL
struct proc;
-__BEGIN_DECLS
-int aout_coredump __P((struct proc *, struct vnode *, off_t));
-__END_DECLS
+int aout_coredump __P((struct proc *p, struct vnode *vp, off_t limit));
#endif /* KERNEL */
#endif /* !_IMGACT_AOUT_H_ */