summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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