From: Mark Eichin Date: Thu, 27 Apr 1995 19:38:37 +0000 (+0000) Subject: * test_parse.c (main): can't make function declarations local to X-Git-Tag: krb5-1.0-beta5~186 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9bae9c9dcc1e547e3f74fa367a573ef19066139a;p=krb5.git * test_parse.c (main): can't make function declarations local to functions under SunOS cc. (dump_profile) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5566 dc483132-0cff-0310-8789-dd5450dbe970 --- 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 + + * 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) {