Update mail address.
[deliverable/binutils-gdb.git] / gprof / search_list.c
index 8a496a66fa09d337f0d93ed49ef5b8534f0e194c..09ea60a53e038cc1c7d036142c034439122c1a16 100644 (file)
@@ -1,6 +1,6 @@
 /* search-list.c
 
-   Copyright (C) 2000  Free Software Foundation, Inc.
+   Copyright 2000, 2001, 2002, 2004 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 (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 +48,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
This page took 0.023777 seconds and 4 git commands to generate.