* go32-xdep.c: Remove unused function uerror.
authorJim Kingdon <jkingdon@engr.sgi.com>
Wed, 12 Jan 1994 19:47:27 +0000 (19:47 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Wed, 12 Jan 1994 19:47:27 +0000 (19:47 +0000)
(sigsetmask): Declare return type.  Declare argument (to match the
way it is called).  Explicitly return 0.

gdb/ChangeLog
gdb/go32-xdep.c

index 72e436b268d2be93882827020077cf45dc792ef2..d138e5814c6d350df4ae3ee94f8934b7cf590c80 100644 (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,
index 28894e0dfbd4a137b90f6355efe34cbb8ead8524..7eb78e09e00cdff6dafeaa3d5ff7cc7f2b156e3b 100644 (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++)