summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>1995-07-06 14:06:33 +0000
committerEzra Peisach <epeisach@mit.edu>1995-07-06 14:06:33 +0000
commitb9e0917f3e576c5a01746ad5197473c16aef5c64 (patch)
tree17a4f9f07c8752e79362ea8bba46053b0a4c661a /src
parent41270f800182c2acb29aec565f7034167ddd2672 (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/util/profile/ChangeLog4
-rw-r--r--src/util/profile/prof_file.c5
2 files changed, 7 insertions, 2 deletions
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 <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
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 <stdio.h>
#include <stdlib.h>
#include <string.h>
+
+#include "prof_int.h"
+
#ifndef NO_SYS_TYPES_H
#include <sys/types.h>
#endif