summaryrefslogtreecommitdiff
path: root/gprof/search_list.h
diff options
context:
space:
mode:
Diffstat (limited to 'gprof/search_list.h')
-rw-r--r--gprof/search_list.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/gprof/search_list.h b/gprof/search_list.h
deleted file mode 100644
index 54dfe3590f7..00000000000
--- a/gprof/search_list.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef search_list_h
-#define search_list_h
-
-typedef struct search_list_elem
- {
- struct search_list_elem *next;
- char path[1];
- }
-Search_List_Elem;
-
-typedef struct
- {
- struct search_list_elem *head;
- struct search_list_elem *tail;
- }
-Search_List;
-
-extern void search_list_append PARAMS ((Search_List * list, const char *paths));
-
-#endif /* search_list_h */