From: Ezra Peisach Date: Thu, 6 Jul 1995 14:06:33 +0000 (+0000) Subject: prof_int.h must be included after stdio.h for prototypes X-Git-Tag: krb5-1.0-beta6~1582 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b9e0917f3e576c5a01746ad5197473c16aef5c64;p=krb5.git prof_int.h must be included after stdio.h for prototypes git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6234 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/util/profile/ChangeLog b/src/util/profile/ChangeLog index d81db6bac..f35fad43b 100644 --- a/src/util/profile/ChangeLog +++ b/src/util/profile/ChangeLog @@ -1,3 +1,7 @@ +Thu Jul 6 10:05:47 1995 Ezra Peisach + + * prof_file.c: prof_int.h must be included after stdio.h + Wed July 5 15:52:31 1995 James Mattly * prof_file.c added conditionals for sys/*.h include files * prof_int.h added _MACINTOSH conditional diff --git a/src/util/profile/prof_file.c b/src/util/profile/prof_file.c index 24a0b3c0b..b0de1cd3a 100644 --- a/src/util/profile/prof_file.c +++ b/src/util/profile/prof_file.c @@ -2,11 +2,12 @@ * prof_file.c ---- routines that manipulate an individual profile file. */ -#include "prof_int.h" - #include #include #include + +#include "prof_int.h" + #ifndef NO_SYS_TYPES_H #include #endif