diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-11-15 19:58:14 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-11-15 19:58:14 +0000 |
commit | b095261a9435adb6787c384aeb7c38827c0d9753 (patch) | |
tree | 1c74354fe956a344d422ba94e11a737459adb9d2 /gdb/xcoffread.c | |
parent | dac544a8172d3cc1a6468762ae4748ce7da665f9 (diff) | |
download | gdb-b095261a9435adb6787c384aeb7c38827c0d9753.zip gdb-b095261a9435adb6787c384aeb7c38827c0d9753.tar.gz gdb-b095261a9435adb6787c384aeb7c38827c0d9753.tar.bz2 |
Protoization.
Diffstat (limited to 'gdb/xcoffread.c')
-rw-r--r-- | gdb/xcoffread.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c index ed55c74..fac9a2f 100644 --- a/gdb/xcoffread.c +++ b/gdb/xcoffread.c @@ -408,8 +408,7 @@ compare_lte (const void *lte1p, const void *lte2p) sort_linevec = 1 to end_symtab. */ static struct linetable * -arrange_linetable (oldLineTb) - struct linetable *oldLineTb; /* old linetable */ +arrange_linetable (struct linetable *oldLineTb) { int ii, jj, newline, /* new line count */ function_count; /* # of functions */ @@ -2600,9 +2599,7 @@ get_toc_offset (struct objfile *objfile) table (as opposed to a shared lib or dynamically loaded file). */ static void -xcoff_initial_scan (objfile, mainline) - struct objfile *objfile; - int mainline; /* FIXME comments above */ +xcoff_initial_scan (struct objfile *objfile, int mainline) { bfd *abfd; int val; |