1 #ifndef DWARF_H
2 #define DWARF_H
3 
4 struct dwarf_in_file {
5 	const char		*name;
6 	int			id;
7 	struct dwarf_in_file	*next;
8 };
9 
10 extern struct dwarf_in_file	*dwarf_files;
11 
12 int	dwarf_put_file(const char *name);
13 
14 #endif
15 
16