* go32-xdep.c: Remove unused function uerror.

(sigsetmask): Declare return type.  Declare argument (to match the
	way it is called).  Explicitly return 0.
This commit is contained in:
Jim Kingdon 1994-01-12 19:47:27 +00:00
parent 4a99cebf62
commit 4ad942bffd
2 changed files with 11 additions and 8 deletions

View File

@ -1,3 +1,9 @@
Wed Jan 12 14:44:45 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* go32-xdep.c: Remove unused function uerror.
(sigsetmask): Declare return type. Declare argument (to match the
way it is called). Explicitly return 0.
Wed Jan 12 01:44:25 1994 John Gilmore (gnu@cygnus.com)
* symtab.h (struct symbol, general_symbol_info, minimal_symbol,

View File

@ -19,18 +19,15 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <stdio.h>
static void uerror(char *s)
{
fprintf_unfiltered(gdb_stderr, "Fatal: %s!\n");
exit(1);
}
sigsetmask()
int
sigsetmask (mask)
int mask;
{
return 0;
}
void
strlwr(str)
strlwr (str)
char *str;
{
for (; *str; str++)