From: Chris Provenzano Date: Thu, 4 May 1995 00:28:53 +0000 (+0000) Subject: * klist.c : #include , a must for prototypes of various X-Git-Tag: krb5-1.0-beta5~39 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f37728a909ae5f60c4203da54830fc840c6b4042;p=krb5.git * klist.c : #include , a must for prototypes of various string routines on systems where int != void *. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5714 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/clients/klist/ChangeLog b/src/clients/klist/ChangeLog index 7b80d3892..88267db16 100644 --- a/src/clients/klist/ChangeLog +++ b/src/clients/klist/ChangeLog @@ -1,3 +1,9 @@ + +Wed May 03 20:20:48 1995 Chris Provenzano (proven@mit.edu) + + * klist.c : #include , a must for prototypes of various + string routines on systems where int != void *. + Thu Mar 2 12:31:29 1995 Theodore Y. Ts'o * Makefile.in (ISODELIB): Remove reference to $(ISODELIB). diff --git a/src/clients/klist/klist.c b/src/clients/klist/klist.c index e59b24ce9..21dc4dc0c 100644 --- a/src/clients/klist/klist.c +++ b/src/clients/klist/klist.c @@ -24,9 +24,10 @@ * List out the contents of your credential cache. */ -#include #include "krb5.h" #include "com_err.h" +#include +#include #include extern int optind;