aboutsummaryrefslogtreecommitdiff
path: root/gprof/source.h
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2002-11-30 08:39:46 +0000
committerAlan Modra <amodra@gmail.com>2002-11-30 08:39:46 +0000
commitb34976b65aea8f33690229600bbf4527ec3118e1 (patch)
tree6411348664ef81ca2aa2e3ff325116e6e6502edf /gprof/source.h
parent583d52d728c60410c0d39bae68ee536a7b9e7a6c (diff)
downloadgdb-b34976b65aea8f33690229600bbf4527ec3118e1.zip
gdb-b34976b65aea8f33690229600bbf4527ec3118e1.tar.gz
gdb-b34976b65aea8f33690229600bbf4527ec3118e1.tar.bz2
s/boolean/bfd_boolean/ s/true/TRUE/ s/false/FALSE/. Simplify
comparisons of bfd_boolean vars with TRUE/FALSE. Formatting.
Diffstat (limited to 'gprof/source.h')
-rw-r--r--gprof/source.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/gprof/source.h b/gprof/source.h
index 6cc23ab..53eac5e 100644
--- a/gprof/source.h
+++ b/gprof/source.h
@@ -33,7 +33,9 @@ typedef struct source_file
Source_File;
/* Options. */
-extern boolean create_annotation_files; /* Create annotated output files? */
+
+/* Create annotated output files? */
+extern bfd_boolean create_annotation_files;
/* List of directories to search for source files. */
extern Search_List src_search_list;