prof_int.h must be included after stdio.h for prototypes
authorEzra Peisach <epeisach@mit.edu>
Thu, 6 Jul 1995 14:06:33 +0000 (14:06 +0000)
committerEzra Peisach <epeisach@mit.edu>
Thu, 6 Jul 1995 14:06:33 +0000 (14:06 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6234 dc483132-0cff-0310-8789-dd5450dbe970

src/util/profile/ChangeLog
src/util/profile/prof_file.c

index d81db6bacb65b71506ad7cb0b7f5dab5aeaf7304..f35fad43bec5d0c5b89dfcce0b544a4651434be9 100644 (file)
@@ -1,3 +1,7 @@
+Thu Jul  6 10:05:47 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
+
+       * prof_file.c: prof_int.h must be included after stdio.h
+
 Wed July 5 15:52:31 1995  James Mattly  <mattly@fusion.com>
        * prof_file.c added conditionals for sys/*.h include files
        * prof_int.h added _MACINTOSH conditional
index 24a0b3c0b3a6b6580ead62dad3c235a56187523e..b0de1cd3ae931ea669a2010975544e4df827fcbc 100644 (file)
@@ -2,11 +2,12 @@
  * prof_file.c ---- routines that manipulate an individual profile file.
  */
 
-#include "prof_int.h"
-
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+
+#include "prof_int.h"
+
 #ifndef NO_SYS_TYPES_H
 #include <sys/types.h>
 #endif