From 4ad942bffd1c5cd557dd91a3372f71f484ddf634 Mon Sep 17 00:00:00 2001 From: Jim Kingdon Date: Wed, 12 Jan 1994 19:47:27 +0000 Subject: [PATCH] * go32-xdep.c: Remove unused function uerror. (sigsetmask): Declare return type. Declare argument (to match the way it is called). Explicitly return 0. --- gdb/ChangeLog | 6 ++++++ gdb/go32-xdep.c | 13 +++++-------- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 72e436b268..d138e5814c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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, diff --git a/gdb/go32-xdep.c b/gdb/go32-xdep.c index 28894e0dfb..7eb78e09e0 100644 --- a/gdb/go32-xdep.c +++ b/gdb/go32-xdep.c @@ -19,18 +19,15 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include -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++) -- 2.34.1