revert 1.9. Not approved.
[deliverable/binutils-gdb.git] / gprof / search_list.h
CommitLineData
252b5132
RH
1#ifndef search_list_h
2#define search_list_h
3
4typedef struct search_list_elem
5 {
6 struct search_list_elem *next;
7 char path[1];
8 }
9Search_List_Elem;
10
11typedef struct
12 {
13 struct search_list_elem *head;
14 struct search_list_elem *tail;
15 }
16Search_List;
17
18extern void search_list_append PARAMS ((Search_List * list, const char *paths));
19
20#endif /* search_list_h */
This page took 0.041008 seconds and 4 git commands to generate.