* klist.c : #include <string.h>, a must for prototypes of various
authorChris Provenzano <proven@mit.edu>
Thu, 4 May 1995 00:28:53 +0000 (00:28 +0000)
committerChris Provenzano <proven@mit.edu>
Thu, 4 May 1995 00:28:53 +0000 (00:28 +0000)
string routines on systems where int != void *.

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

src/clients/klist/ChangeLog
src/clients/klist/klist.c

index 7b80d38926fe582d7e3a42808a27ec65768bd96d..88267db1688a4f0e44376306a79742e0530f01c9 100644 (file)
@@ -1,3 +1,9 @@
+
+Wed May 03 20:20:48 1995  Chris Provenzano (proven@mit.edu)
+
+       * klist.c : #include <string.h>, a must for prototypes of various 
+               string routines on systems where int != void *.
+
 Thu Mar  2 12:31:29 1995  Theodore Y. Ts'o  <tytso@dcl>
 
        * Makefile.in (ISODELIB): Remove reference to $(ISODELIB).
index e59b24ce9f3a3a7a232c75af5ef9dc75004b17b3..21dc4dc0c82d8aaa39ebdfe9673dfb6c9768fdc5 100644 (file)
  * List out the contents of your credential cache.
  */
 
-#include <stdio.h>
 #include "krb5.h"
 #include "com_err.h"
+#include <string.h>
+#include <stdio.h>
 #include <time.h>
 
 extern int optind;