This is the mail archive of the binutils@sources.redhat.com mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

PATCH to binutils: K&R-ise a function (obviously correct rule)


The following patch to binutils needs to be checked in under the obviously
correct rule, but I don't have commit rights.

--
Michael Sokolov		Harhan Engineering Laboratory
Public Service Agent	International Free Computing Task Force
			International Engineering and Science Task Force
			615 N GOOD LATIMER EXPY STE #4
			DALLAS TX 75204-5852 USA

Phone: +1-214-824-7693 (Harhan Eng Lab office)
E-mail: msokolov@ivan.Harhan.ORG (ARPA TCP/SMTP) (UUCP coming soon)

2000-07-22  Michael Sokolov  <msokolov@ivan.Harhan.ORG>

	* rdcoff.c (external_coff_symbol_p): K&R-ise.

Index: rdcoff.c
===================================================================
RCS file: /cvs/src/src/binutils/rdcoff.c,v
retrieving revision 1.4
diff -c -r1.4 rdcoff.c
*** rdcoff.c	2000/06/25 16:39:45	1.4
--- rdcoff.c	2000/07/22 18:24:54
***************
*** 661,667 ****
  /* Determine if a symbol has external visibility.  */
  
  static boolean
! external_coff_symbol_p (int sym_class)
  {
    switch (sym_class)
      {
--- 661,668 ----
  /* Determine if a symbol has external visibility.  */
  
  static boolean
! external_coff_symbol_p (sym_class)
!      int sym_class;
  {
    switch (sym_class)
      {

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]