don't need proto for vfprintf in STDC cases
authorJohn Kohl <jtkohl@mit.edu>
Tue, 3 Jul 1990 15:28:04 +0000 (15:28 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Tue, 3 Jul 1990 15:28:04 +0000 (15:28 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1031 dc483132-0cff-0310-8789-dd5450dbe970

src/kdc/main.c

index f1b840484be78029f9f906740839cebefe6d4675..5454d1522893b33ff02404760a64d0217f4b52f6 100644 (file)
@@ -54,7 +54,9 @@ kdc_com_err_proc(whoami, code, format, pvar)
 {
     /* XXX need some way to do this better... */
 
-    extern int vfprintf PROTOTYPE((FILE *, const char *, va_list));
+#ifndef __STDC__
+    extern int vfprintf();
+#endif
 
     if (whoami) {
         fputs(whoami, stderr);