+Sat Mar 18 18:59:45 1995 John Gilmore (gnu at toad.com)
+
+ * kerberos_v4.c: Replace STDARG_PROTOTYPES with HAVE_STDARG_H.
+
Tue Mar 14 15:25:38 1995 <tytso@rsx-11.mit.edu>
* configure.in, Makefile.in: Use the libdes425 library so that the
#include "k5-int.h"
-#if __STDC__ || defined(STDARG_PROTOTYPES)
+#ifdef HAVE_STDARG_H
#include <stdarg.h>
#else
#include <varargs.h>
KRB_AP_ERR_BADVERSION /* L_KRB_PWARN 16 Protocol warning messages */
};
#define klog v4_klog
-#if __STDC__ || defined(STDARG_PROTOTYPES)
+#ifdef HAVE_STDARG_H
char * v4_klog( int type, const char *format, ...)
#else
char * v4_klog( type, format, va_alist)
{
int logpri = LOG_INFO;
va_list pvar;
-#if __STDC__ || defined(STDARG_PROTOTYPES)
+#ifdef HAVE_STDARG_H
va_start(pvar, format);
#else
va_start(pvar);