aboutsummaryrefslogtreecommitdiff
path: root/gdb/go32-xdep.c
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1994-01-12 19:47:27 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1994-01-12 19:47:27 +0000
commit4ad942bffd1c5cd557dd91a3372f71f484ddf634 (patch)
treeef060eb6579900701a667771975207bc518a716f /gdb/go32-xdep.c
parent4a99cebf627de8b6e0cf5eff68ea53a3369bdc4f (diff)
downloadfsf-binutils-gdb-4ad942bffd1c5cd557dd91a3372f71f484ddf634.zip
fsf-binutils-gdb-4ad942bffd1c5cd557dd91a3372f71f484ddf634.tar.gz
fsf-binutils-gdb-4ad942bffd1c5cd557dd91a3372f71f484ddf634.tar.bz2
* go32-xdep.c: Remove unused function uerror.
(sigsetmask): Declare return type. Declare argument (to match the way it is called). Explicitly return 0.
Diffstat (limited to 'gdb/go32-xdep.c')
-rw-r--r--gdb/go32-xdep.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/gdb/go32-xdep.c b/gdb/go32-xdep.c
index 28894e0..7eb78e0 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 <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++)