summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2005-11-24 08:16:18 +0000
committerru <ru@FreeBSD.org>2005-11-24 08:16:18 +0000
commit2a0206e03e65255792135b186fd42046ad4ba62a (patch)
tree445faca696ac6d659b8269c182aa4f7d1002e73d
parentd9eedd9185e848dbd3ab6fd31059a0f15394832d (diff)
downloadFreeBSD-src-2a0206e03e65255792135b186fd42046ad4ba62a.zip
FreeBSD-src-2a0206e03e65255792135b186fd42046ad4ba62a.tar.gz
Add missing "struct" in i386/i386/machdep.c,v 1.497 by deischen@.
-rw-r--r--sys/amd64/amd64/machdep.c2
-rw-r--r--sys/arm/arm/machdep.c2
-rw-r--r--sys/i386/i386/machdep.c2
-rw-r--r--sys/pc98/pc98/machdep.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c
index 0ee32f3..9e8e5a2 100644
--- a/sys/amd64/amd64/machdep.c
+++ b/sys/amd64/amd64/machdep.c
@@ -343,7 +343,7 @@ int
sigreturn(td, uap)
struct thread *td;
struct sigreturn_args /* {
- const __ucontext *sigcntxp;
+ const struct __ucontext *sigcntxp;
} */ *uap;
{
ucontext_t uc;
diff --git a/sys/arm/arm/machdep.c b/sys/arm/arm/machdep.c
index 04d3c31..45806ee 100644
--- a/sys/arm/arm/machdep.c
+++ b/sys/arm/arm/machdep.c
@@ -511,7 +511,7 @@ int
sigreturn(td, uap)
struct thread *td;
struct sigreturn_args /* {
- const __ucontext *sigcntxp;
+ const struct __ucontext *sigcntxp;
} */ *uap;
{
struct proc *p = td->td_proc;
diff --git a/sys/i386/i386/machdep.c b/sys/i386/i386/machdep.c
index bb38901..19eba7c 100644
--- a/sys/i386/i386/machdep.c
+++ b/sys/i386/i386/machdep.c
@@ -911,7 +911,7 @@ int
sigreturn(td, uap)
struct thread *td;
struct sigreturn_args /* {
- const __ucontext *sigcntxp;
+ const struct __ucontext *sigcntxp;
} */ *uap;
{
ucontext_t uc;
diff --git a/sys/pc98/pc98/machdep.c b/sys/pc98/pc98/machdep.c
index 40c5706..4d50d75 100644
--- a/sys/pc98/pc98/machdep.c
+++ b/sys/pc98/pc98/machdep.c
@@ -909,7 +909,7 @@ int
sigreturn(td, uap)
struct thread *td;
struct sigreturn_args /* {
- const __ucontext *sigcntxp;
+ const struct __ucontext *sigcntxp;
} */ *uap;
{
ucontext_t uc;
OpenPOWER on IntegriCloud