* kparse.c: Provide prototype for static struol(). Do not define
authorEzra Peisach <epeisach@mit.edu>
Tue, 10 Oct 2000 09:13:09 +0000 (09:13 +0000)
committerEzra Peisach <epeisach@mit.edu>
Tue, 10 Oct 2000 09:13:09 +0000 (09:13 +0000)
        void as int (autoconf can handle that).

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

src/lib/krb4/ChangeLog
src/lib/krb4/kparse.c

index 749e81f7e05f6982119c95baad15c21d8b0c85b8..ce5439cee7d337dea6ead1768ad4b2c6e1c1d6ae 100644 (file)
@@ -1,3 +1,8 @@
+Tue Oct 10 05:03:50 2000  Ezra Peisach  <epeisach@mit.edu>
+
+       * kparse.c: Provide prototype for static struol(). Do not define
+       void as int (autoconf can handle that). 
+
 2000-10-07  Tom Yu  <tlyu@mit.edu>
 
        * g_tkt_svc.c (CredIsExpired): Fix logic bug.
index e72295c48fcd0f6b3a6c9eaaedf355dab847155b..808330fc713fc6dd8a1eb2a3473d0db0010239d1 100644 (file)
 #define TRUE 1
 #endif
 
-#define void int
-
 #define MAXKEY          80
 #define MAXVALUE        80
 
-static char *strutol();
+static char *strutol PROTOTYPE((char *));
+
 
 #ifndef HAVE_STRDUP
 static char *strdup();
@@ -327,6 +326,7 @@ int fGetKeywordValue( fp, keyword, klen, value, vlen )
 
     } while ( !gotit );
     /*NOTREACHED*/
+    return 0; /* to keep gcc happy */
 }
 \f
 /*