diff options
author | John Gilmore <gnu@cygnus> | 1992-02-21 01:31:56 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1992-02-21 01:31:56 +0000 |
commit | 75af490bd2b263be24c7e3545f3afba862df7819 (patch) | |
tree | bf2df30b74edf8d4a7224de594cb5a08d4611b2f /gdb/signame.h | |
parent | 088c3a0b74c7431d31ec5d095f4e68bdd2d90c0b (diff) | |
download | gdb-75af490bd2b263be24c7e3545f3afba862df7819.zip gdb-75af490bd2b263be24c7e3545f3afba862df7819.tar.gz gdb-75af490bd2b263be24c7e3545f3afba862df7819.tar.bz2 |
* environ.h, expression.h, frame.h, gdbcmd.h, gdbcore.h,
inferior.h, language.h, signame.h, target.h, terminal.h,
tm-68k.h, tm-i386v.h, tm-sparc.h, tm-sun386.h, tm-symmetry.h,
xm-i386v.h, xm-sparc.h: Prototypes for all external functions.
Lint.
Diffstat (limited to 'gdb/signame.h')
-rwxr-xr-x | gdb/signame.h | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/gdb/signame.h b/gdb/signame.h index 4b9cbf9..caa1bba 100755 --- a/gdb/signame.h +++ b/gdb/signame.h @@ -1,5 +1,5 @@ /* Convert between signal names and numbers. - Copyright (C) 1990 Free Software Foundation, Inc. + Copyright 1990, 1992 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 @@ -15,27 +15,29 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#if !defined (SIGNAME_H) +#define SIGNAME_H 1 + /* Names for signals from 0 to NSIG-1. */ extern char *sys_siglist[]; -#ifdef __STDC__ /* Return the abbreviation (e.g. ABRT, FPE, etc.) for signal NUMBER. Do not return this as a const char *. The caller might want to assign it to a char *. */ -char *sig_abbrev (int number); + +extern char * +sig_abbrev PARAMS ((int)); /* Return the signal number for an ABBREV, or -1 if there is no signal by that name. */ -int sig_number (const char *abbrev); + +extern int +sig_number PARAMS ((const char *)); /* Print to standard error the name of SIGNAL, preceded by MESSAGE and a colon, and followed by a newline. */ -void psignal (unsigned signal, const char *message); - -#else -char *sig_abbrev (); -int sig_number (); -void psignal (); +extern void +psignal PARAMS ((unsigned, const char *)); -#endif +#endif /* !defined (SIGNAME_H) */ |