Fix sys_siglist and sys_signame declarations with reality; from John F. Woods

in PR lib/5720.
This commit is contained in:
kleink 1998-07-07 21:26:02 +00:00
parent 4220ffab81
commit 2f804d05e9
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: psignal.3,v 1.8 1998/02/05 18:47:37 perry Exp $
.\" $NetBSD: psignal.3,v 1.9 1998/07/07 21:26:02 kleink Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -44,11 +44,11 @@
.Sh LIBRARY
.Lb libc
.Sh SYNOPSIS
.Fd #include <sys/signal.h>
.Fd #include <signal.h>
.Ft void
.Fn psignal "unsigned sig" "const char *s"
.Vt extern char *sys_siglist[];
.Vt extern char *sys_signame[];
.Vt extern const char * const sys_siglist[];
.Vt extern const char * const sys_signame[];
.Sh DESCRIPTION
The
.Fn psignal