return __annotate_browser__search_reverse(browser);
 }
 
-static void annotation__update_column_widths(struct annotation *notes)
-{
-       if (notes->options->use_offset)
-               notes->widths.target = notes->widths.min_addr;
-       else
-               notes->widths.target = notes->widths.max_addr;
-
-       notes->widths.addr = notes->widths.target;
-
-       if (notes->options->show_nr_jumps)
-               notes->widths.addr += notes->widths.jumps + 1;
-}
-
 static int annotate_browser__run(struct annotate_browser *browser,
                                 struct perf_evsel *evsel,
                                 struct hist_browser_timer *hbt)
 
        }
 }
 
+void annotation__update_column_widths(struct annotation *notes)
+{
+       if (notes->options->use_offset)
+               notes->widths.target = notes->widths.min_addr;
+       else
+               notes->widths.target = notes->widths.max_addr;
+
+       notes->widths.addr = notes->widths.target;
+
+       if (notes->options->show_nr_jumps)
+               notes->widths.addr += notes->widths.jumps + 1;
+}
+
 static void annotation__calc_lines(struct annotation *notes, struct map *map,
                                  struct rb_root *root, u64 start)
 {
 
 void annotation__set_offsets(struct annotation *notes, s64 size);
 void annotation__compute_ipc(struct annotation *notes, size_t size);
 void annotation__mark_jump_targets(struct annotation *notes, struct symbol *sym);
+void annotation__update_column_widths(struct annotation *notes);
 
 static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx)
 {