Eliminate some uses of __STDC__.
[deliverable/binutils-gdb.git] / gdb / stuff.c
index babd29fae6f3d3f2c0597866ed6aded89cc8ab52..f010c8e0578719b71147e590565bd65f9a35ff1f 100644 (file)
@@ -1,5 +1,6 @@
 /* Program to stuff files into a specially prepared space in kdb.
-   Copyright (C) 1986, 1989, 1991 Free Software Foundation, Inc.
+   Copyright 1986, 1989, 1991, 1992, 1995, 2000
+   Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -94,9 +95,7 @@ main (argc, argv)
 /* Read symbol table from file and returns the offset into the file
  * where symbol sym_name is located.  If error, print message and
  * exit. */
-get_offset (file, sym_name)
-     char *file;
-     char *sym_name;
+get_offset (char *file, char *sym_name)
 {
   int f;
   struct exec file_hdr;
@@ -139,11 +138,8 @@ get_offset (file, sym_name)
   return (N_TXTOFF (file_hdr) + core_addr - origin);
 }
 
-find_symbol (sym_name, symbol_table, length, strings)
-     char *sym_name;
-     struct nlist *symbol_table;
-     int length;
-     char *strings;
+find_symbol (char *sym_name, struct nlist *symbol_table, int length,
+            char *strings)
 {
   register struct nlist *sym;
 
This page took 0.023277 seconds and 4 git commands to generate.