diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-02-01 01:08:48 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-02-01 01:08:48 +0000 |
| commit | 22626efa0f96cbca4edae882e46cb56b1879706b (patch) | |
| tree | 8179b431c3e3ff86ad8d0302e31673509ac370ce /lib/libc/gen/psignal.c | |
| parent | ea8d448a923f0d68d7ecf1d2a0583c7d17bdee4e (diff) | |
Notes
Diffstat (limited to 'lib/libc/gen/psignal.c')
| -rw-r--r-- | lib/libc/gen/psignal.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/gen/psignal.c b/lib/libc/gen/psignal.c index e51c463fce17..c0f63cdbdd91 100644 --- a/lib/libc/gen/psignal.c +++ b/lib/libc/gen/psignal.c @@ -29,13 +29,13 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)psignal.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); /* * Print the name of the signal indicated @@ -52,7 +52,7 @@ psignal(sig, s) unsigned int sig; const char *s; { - register const char *c; + const char *c; if (sig < NSIG) c = sys_siglist[sig]; |
