Changeset 609 for branches/GNU/src/binutils/gprof/source.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/gprof/source.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* source.c - Keep track of source files. 2 2 3 Copyright 2000, 2001 Free Software Foundation, Inc.3 Copyright 2000, 2001, 2002 Free Software Foundation, Inc. 4 4 5 5 This file is part of GNU Binutils. … … 30 30 31 31 /* Default option values. */ 32 b oolcreate_annotation_files = FALSE;32 bfd_boolean create_annotation_files = FALSE; 33 33 34 34 Search_List src_search_list = {0, 0}; … … 37 37 38 38 Source_File * 39 DEFUN (source_file_lookup_path, (path), const char *path) 39 source_file_lookup_path (path) 40 const char *path; 40 41 { 41 42 Source_File *sf; … … 64 65 65 66 Source_File * 66 DEFUN (source_file_lookup_name, (filename), const char *filename) 67 source_file_lookup_name (filename) 68 const char *filename; 67 69 { 68 70 const char *fname; … … 91 93 92 94 FILE * 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) 95 annotate_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; 97 100 { 98 static b oolfirst_file = TRUE;101 static bfd_boolean first_file = TRUE; 99 102 int i, line_num, nread; 100 b oolnew_line;103 bfd_boolean new_line; 101 104 char buf[8192]; 102 105 char fname[PATH_MAX]; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.