* xm-sun3os4.h, xm-sun4os4.h: Enable HAVE_MMAP.
[deliverable/binutils-gdb.git] / gdb / stuff.c
index 7a2173bea0c171d56b49e3fbfd9072004cff7a43..a28511d6e7e6b4e1513d4d1c9f0d5e7ad6de2ab5 100644 (file)
@@ -1,21 +1,21 @@
 /* Program to stuff files into a specially prepared space in kdb.
-   Copyright (C) 1986, 1989 Free Software Foundation, Inc.
+   Copyright (C) 1986, 1989, 1991 Free Software Foundation, Inc.
 
 This file is part of GDB.
 
-GDB is free software; you can redistribute it and/or modify
+This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 1, or (at your option)
-any later version.
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
 
-GDB is distributed in the hope that it will be useful,
+This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
-along with GDB; see the file COPYING.  If not, write to
-the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
+along with this program; if not, write to the Free Software
+Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
 /* Written 13-Mar-86 by David Bridgham. */
 
@@ -24,9 +24,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/file.h>
+#include <varargs.h>
 
 extern char *sys_errlist[];
-extern int errno;
 
 main (argc, argv)
      int argc;
@@ -158,10 +158,17 @@ find_symbol (sym_name, symbol_table, length, strings)
     err ("Data symbol %s not found in %s\n", sym_name, file);
 }
 
-err (msg, a1, a2, a3)
-     char *msg;
-     int a1, a2, a3;
+/* VARARGS */
+void
+err (va_alist)
+     va_dcl
 {
-  fprintf (stderr, msg, a1, a2, a3);
+  va_list args;
+  char *string;
+
+  va_start (args);
+  string = va_arg (args, char *);
+  vfprintf (stderr, string, args);
+  va_end (args);
   exit (-1);
 }
This page took 0.023675 seconds and 4 git commands to generate.