Ignore:
Timestamp:
Aug 16, 2003, 6:59:22 PM (22 years ago)
Author:
bird
Message:

binutils v2.14 - offical sources.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/binutils/gprof/source.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r608 r609  
    11/* source.c - Keep track of source files.
    22
    3    Copyright 2000, 2001 Free Software Foundation, Inc.
     3   Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
    44
    55   This file is part of GNU Binutils.
     
    3030
    3131/* Default option values.  */
    32 bool create_annotation_files = FALSE;
     32bfd_boolean create_annotation_files = FALSE;
    3333
    3434Search_List src_search_list = {0, 0};
     
    3737
    3838Source_File *
    39 DEFUN (source_file_lookup_path, (path), const char *path)
     39source_file_lookup_path (path)
     40     const char *path;
    4041{
    4142  Source_File *sf;
     
    6465
    6566Source_File *
    66 DEFUN (source_file_lookup_name, (filename), const char *filename)
     67source_file_lookup_name (filename)
     68     const char *filename;
    6769{
    6870  const char *fname;
     
    9193
    9294FILE *
    93 DEFUN (annotate_source, (sf, max_width, annote, arg),
    94        Source_File * sf AND int max_width
    95        AND void (*annote) PARAMS ((char *buf, int w, int l, void *arg))
    96        AND void *arg)
     95annotate_source (sf, max_width, annote, arg)
     96     Source_File *sf;
     97     unsigned int max_width;
     98     void (*annote) PARAMS ((char *, unsigned int, int, void *));
     99     void *arg;
    97100{
    98   static bool first_file = TRUE;
     101  static bfd_boolean first_file = TRUE;
    99102  int i, line_num, nread;
    100   bool new_line;
     103  bfd_boolean new_line;
    101104  char buf[8192];
    102105  char fname[PATH_MAX];
Note: See TracChangeset for help on using the changeset viewer.