From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kevin Buettner To: gdb-patches@sources.redhat.com Subject: Re: [PATCH RFC] Protoize values.c, varobj.c Date: Thu, 09 Nov 2000 17:27:00 -0000 Message-id: <1001110012709.ZM28402@ocotillo.lan> References: <1001108052055.ZM20567@ocotillo.lan> X-SW-Source: 2000-11/msg00123.html On Nov 7, 10:20pm, Kevin Buettner wrote: > * values.c (value_being_returned, using_struct_return): Protoize. > * varobj.c (child_exists, cplus_class_num_children): Protoize. Committed. >From kevinb@cygnus.com Thu Nov 09 17:27:00 2000 From: Kevin Buettner To: gdb-patches@sources.redhat.com Subject: [PATCH RFC] Protoize win32-nat.c, xcoffread.c Date: Thu, 09 Nov 2000 17:27:00 -0000 Message-id: <1001110012636.ZM28396@ocotillo.lan> X-SW-Source: 2000-11/msg00122.html Content-length: 1546 More protoization... * win32-nat.c (safe_symbol_file_add): Remove extraneous blank line after function declarator. * xcoffread.c (arrange_linetable, xcoff_initial_scan): Protoize. Index: win32-nat.c =================================================================== RCS file: /cvs/src/src/gdb/win32-nat.c,v retrieving revision 1.15 diff -u -r1.15 win32-nat.c --- win32-nat.c 2000/08/27 04:21:35 1.15 +++ win32-nat.c 2000/11/10 01:21:46 @@ -463,7 +463,6 @@ safe_symbol_file_add (char *name, int from_tty, struct section_addr_info *addrs, int mainline, int flags) - { struct safe_symbol_file_add_args p; struct cleanup *cleanup; Index: xcoffread.c =================================================================== RCS file: /cvs/src/src/gdb/xcoffread.c,v retrieving revision 1.9 diff -u -r1.9 xcoffread.c --- xcoffread.c 2000/08/27 22:30:29 1.9 +++ xcoffread.c 2000/11/10 01:21:49 @@ -408,8 +408,7 @@ 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 @@ 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;