* elfxx-ia64.c (get_dyn_sym_info): Return NULL gracefully for
[binutils-gdb.git] / gprof / search_list.c
index 575aba354dd919033fc1b0c974a078e9db7cc6fd..50b4cf2e3d89e9d28f294747de4e3aeda3ff44f0 100644 (file)
@@ -1,6 +1,6 @@
 /* search-list.c
 
-   Copyright 2000 Free Software Foundation, Inc.
+   Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
 
    This file is part of GNU Binutils.
 
 
 
 void
-DEFUN (search_list_append, (list, paths),
-       Search_List * list AND const char *paths)
+search_list_append (list, paths)
+     Search_List *list;
+     const char *paths;
 {
   Search_List_Elem *new_el;
   const char *beg, *colon;
-  int len;
+  unsigned int len;
 
   colon = paths - 1;
   do
     {
       beg = colon + 1;
       colon = strchr (beg, PATH_SEP_CHAR);
-      
+
       if (colon)
        len = colon - beg;
       else
@@ -49,7 +50,7 @@ DEFUN (search_list_append, (list, paths),
 
       /* Append new path at end of list.  */
       new_el->next = 0;
-      
+
       if (list->tail)
        list->tail->next = new_el;
       else