* test_parse.c (main): can't make function declarations local to
authorMark Eichin <eichin@mit.edu>
Thu, 27 Apr 1995 19:38:37 +0000 (19:38 +0000)
committerMark Eichin <eichin@mit.edu>
Thu, 27 Apr 1995 19:38:37 +0000 (19:38 +0000)
functions under SunOS cc. (dump_profile)

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5566 dc483132-0cff-0310-8789-dd5450dbe970

src/util/profile/ChangeLog
src/util/profile/test_parse.c

index 58bea73c59403d2b55351a2db58e57d1a2816e20..6d82872be592c96ed004c4f55599742e94cffbeb 100644 (file)
@@ -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.
index 8ea54510b85c9fb68a968548dbffd2904c2792a1..6b832d4aecbf557f44adb75a7fc954ccddb12d68 100644 (file)
@@ -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) {