diff options
author | kib <kib@FreeBSD.org> | 2010-04-13 08:56:03 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2010-04-13 08:56:03 +0000 |
commit | d1b7d24e6f4537484cace48d3b0fb3664d24a692 (patch) | |
tree | 83647a8d10109d97a6590493ea4bdc4b583632ae /lib/libc | |
parent | a00ca9686bc5e78f3dd24a511788378b3fd95d04 (diff) | |
download | FreeBSD-src-d1b7d24e6f4537484cace48d3b0fb3664d24a692.zip FreeBSD-src-d1b7d24e6f4537484cace48d3b0fb3664d24a692.tar.gz |
Align the declaration for sa_sigaction with POSIX.
MFC after: 3 days
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/sys/sigaction.2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/sigaction.2 b/lib/libc/sys/sigaction.2 index 4c4f18f..9bd4c9e 100644 --- a/lib/libc/sys/sigaction.2 +++ b/lib/libc/sys/sigaction.2 @@ -28,7 +28,7 @@ .\" From: @(#)sigaction.2 8.2 (Berkeley) 4/3/94 .\" $FreeBSD$ .\" -.Dd June 7, 2004 +.Dd April 13, 2010 .Dt SIGACTION 2 .Os .Sh NAME @@ -42,7 +42,7 @@ struct sigaction { union { void (*__sa_handler)(int); - void (*__sa_sigaction)(int, struct __siginfo *, void *); + void (*__sa_sigaction)(int, siginfo_t *, void *); } __sigaction_u; /* signal handler */ int sa_flags; /* see signal options below */ sigset_t sa_mask; /* signal mask to apply */ |