ran "indent -gnu"; have not fixed block comment style

This commit is contained in:
Ken Raeburn
1995-02-08 02:35:44 +00:00
parent 28860f46fa
commit 12516a373c
47 changed files with 5114 additions and 4311 deletions

View File

@@ -3,11 +3,11 @@
#include "bfd.h"
extern bfd_vma s_lowpc; /* lowpc from the profile file */
extern bfd_vma s_highpc; /* highpc from the profile file */
extern bfd_vma lowpc, highpc; /* range profiled, in UNIT's */
extern int hist_num_bins; /* number of histogram bins */
extern int *hist_sample; /* code histogram */
extern bfd_vma s_lowpc; /* lowpc from the profile file */
extern bfd_vma s_highpc; /* highpc from the profile file */
extern bfd_vma lowpc, highpc; /* range profiled, in UNIT's */
extern int hist_num_bins; /* number of histogram bins */
extern int *hist_sample; /* code histogram */
/*
* Scale factor converting samples to pc values: each sample covers
* HIST_SCALE bytes:
@@ -15,9 +15,9 @@ extern int *hist_sample; /* code histogram */
extern double hist_scale;
extern void hist_read_rec PARAMS((FILE *ifp, const char *filename));
extern void hist_write_hist PARAMS((FILE *ofp, const char *filename));
extern void hist_assign_samples PARAMS((void));
extern void hist_print PARAMS((void));
extern void hist_read_rec PARAMS ((FILE * ifp, const char *filename));
extern void hist_write_hist PARAMS ((FILE * ofp, const char *filename));
extern void hist_assign_samples PARAMS ((void));
extern void hist_print PARAMS ((void));
#endif /* hist_h */