X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fsig2str.c;h=15d969c868f50ab5448b765d648cd354281cf247;hb=ec03ca352064740b271b27e0be2b562b687b4554;hp=1edc9f119502d32c079b0b570387f53a96ac7304;hpb=833bf615e55c2c7da116e82558364653766c1dce;p=gnulib.git diff --git a/lib/sig2str.c b/lib/sig2str.c index 1edc9f119..15d969c86 100644 --- a/lib/sig2str.c +++ b/lib/sig2str.c @@ -1,6 +1,6 @@ /* sig2str.c -- convert between signal names and numbers - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2004 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -28,13 +28,6 @@ #include #include -#if HAVE_SYS_WAIT_H -# include -#endif -#ifndef WTERMSIG -# define WTERMSIG(s) ((s) & 0x7F) -#endif - #include "sig2str.h" #ifndef SIGRTMIN @@ -224,7 +217,7 @@ static struct numname { int num; char const name[8]; } numname_table[] = #endif /* Older AIX versions. */ -#ifdef SIGALRM1 +#ifdef SIGALRM1 NUMNAME (ALRM1), /* unknown; taken from Bash 2.05 */ #endif #ifdef SIGKAP @@ -260,7 +253,7 @@ static struct numname { int num; char const name[8]; } numname_table[] = POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to ISDIGIT_LOCALE unless it's important to use the locale's definition of `digit' even when the host does not conform to POSIX. */ -#define ISDIGIT(c) ((unsigned) (c) - '0' <= 9) +#define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9) /* Convert the signal name SIGNAME to a signal number. Return the signal number if successful, -1 otherwise. */ @@ -277,7 +270,7 @@ str2signum (char const *signame) } else { - int i; + unsigned int i; for (i = 0; i < NUMNAME_ENTRIES; i++) if (strcmp (numname_table[i].name, signame) == 0) return numname_table[i].num; @@ -322,7 +315,7 @@ str2sig (char const *signame, int *signum) int sig2str (int signum, char *signame) { - int i; + unsigned int i; for (i = 0; i < NUMNAME_ENTRIES; i++) if (numname_table[i].num == signum) {