include/elf/ChangeLog
[binutils-gdb.git] / binutils / rdcoff.c
index 22c8ab95e9646dac3cb87b161c8fda079f60388c..2091964e89b4cded8bf3eae37729389f2f2c0701 100644 (file)
@@ -1,5 +1,5 @@
 /* stabs.c -- Parse COFF debugging information
-   Copyright (C) 1996, 98, 99, 2000 Free Software Foundation, Inc.
+   Copyright 1996, 2000 Free Software Foundation, Inc.
    Written by Ian Lance Taylor <ian@cygnus.com>.
 
    This file is part of GNU Binutils.
@@ -25,7 +25,6 @@
 #include "coff/internal.h"
 #include "bucomm.h"
 #include "libiberty.h"
-#include "demangle.h"
 #include "debug.h"
 #include "budbg.h"
 
@@ -655,23 +654,24 @@ parse_coff_symbol (abfd, types, sym, coff_symno, psyment, dhandle, type,
       break;
     }
 
-  return true;                            
+  return true;
 }
 
 /* Determine if a symbol has external visibility.  */
 
 static boolean
-external_coff_symbol_p (int sym_class)
+external_coff_symbol_p (sym_class)
+     int sym_class;
 {
   switch (sym_class)
     {
-      case C_EXT:
-      case C_WEAKEXT:
-        return true;
+    case C_EXT:
+    case C_WEAKEXT:
+      return true;
     default:
       break;
     }
-  return false;         
+  return false;
 }
 
 /* This is the main routine.  It looks through all the symbols and
@@ -785,7 +785,7 @@ parse_coff (abfd, syms, symcount, dhandle)
          if (syment.n_type == T_NULL)
            break;
          /* Fall through.  */
-       case C_WEAKEXT:
+       case C_WEAKEXT:
        case C_EXT:
          if (ISFCN (syment.n_type))
            {