summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2001-06-11 22:52:57 +0000
committerEzra Peisach <epeisach@mit.edu>2001-06-11 22:52:57 +0000
commit5a8a71616280869914154d895a446be58ec90405 (patch)
tree14b33c73275c8ca4158c2f90c83271ac3e1b51ce /src
parent3f3a704da40dcc424efcd8cf3a1ada9902a77989 (diff)
downloadkrb5-5a8a71616280869914154d895a446be58ec90405.tar.gz
krb5-5a8a71616280869914154d895a446be58ec90405.tar.xz
krb5-5a8a71616280869914154d895a446be58ec90405.zip
* test_profile.c: Include <string.h> for strcmp() prototype
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13337 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/util/profile/ChangeLog4
-rw-r--r--src/util/profile/test_profile.c1
2 files changed, 4 insertions, 1 deletions
diff --git a/src/util/profile/ChangeLog b/src/util/profile/ChangeLog
index 9f4c4a373..b6da31638 100644
--- a/src/util/profile/ChangeLog
+++ b/src/util/profile/ChangeLog
@@ -1,8 +1,10 @@
2001-06-11 Ezra Peisach <epeisach@mit.edu>
+ * test_profile.c: Include <string.h> for strcmp() prototype.
+
* argv_parse.c (argv_parse): Cast argument to isspace() as int.
* prof_parse.c (skip_over_blanks, parse_std_line, need_double_quotes):
- Likewise
+ Likewise.
2001-06-11 Ezra Peisach <epeisach@mit.edu>
diff --git a/src/util/profile/test_profile.c b/src/util/profile/test_profile.c
index da81a20e0..f23a66a60 100644
--- a/src/util/profile/test_profile.c
+++ b/src/util/profile/test_profile.c
@@ -3,6 +3,7 @@
*/
#include <stdio.h>
+#include <string.h>
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif