summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/util/profile/ChangeLog5
-rw-r--r--src/util/profile/test_parse.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/src/util/profile/ChangeLog b/src/util/profile/ChangeLog
index 58bea73c5..6d82872be 100644
--- a/src/util/profile/ChangeLog
+++ b/src/util/profile/ChangeLog
@@ -1,3 +1,8 @@
+Thu Apr 27 15:36:27 1995 Mark Eichin <eichin@cygnus.com>
+
+ * test_parse.c (main): can't make function declarations local to
+ functions under SunOS cc. (dump_profile)
+
Thu Apr 27 10:43:24 1995 Keith Vetter (keithv@fusion.com)
* Makefile.in: made to work on the PC.
diff --git a/src/util/profile/test_parse.c b/src/util/profile/test_parse.c
index 8ea54510b..6b832d4ae 100644
--- a/src/util/profile/test_parse.c
+++ b/src/util/profile/test_parse.c
@@ -20,6 +20,8 @@ char *error_message (long err) {
}
#endif
+void dump_profile(struct profile_node *root, int level);
+
int main(argc, argv)
int argc;
char **argv;
@@ -27,7 +29,6 @@ int main(argc, argv)
struct profile_node *root;
unsigned long retval;
FILE *f;
- void dump_profile(struct profile_node *root, int level);
initialize_prof_error_table();
if (argc != 2) {