(sigsetmask): Declare return type. Declare argument (to match the
way it is called). Explicitly return 0.
+
+ * go32-xdep.c: Remove unused function uerror.
+ (sigsetmask): Declare return type. Declare argument (to match the
+ way it is called). Explicitly return 0.
+
* symtab.h (struct symbol, general_symbol_info, minimal_symbol,
#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++)