* srv_main.c: Move inclusion of k5-int.h before testing if
authorEzra Peisach <epeisach@mit.edu>
Sun, 3 Mar 1996 17:55:45 +0000 (17:55 +0000)
committerEzra Peisach <epeisach@mit.edu>
Sun, 3 Mar 1996 17:55:45 +0000 (17:55 +0000)
HAVE_STDARG_H is defined.

This is because configure.in does not test for stdarg.h, but autoconf.h does have it defined.

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

src/kadmin/v5server/ChangeLog
src/kadmin/v5server/srv_main.c

index 1337eb55fb9a00635dae809555c7773aae388707..568f5c6ab4282ed51e6239862b13e26400201a26 100644 (file)
@@ -1,3 +1,8 @@
+Sun Mar  3 12:52:49 1996  Ezra Peisach  <epeisach@kangaroo.mit.edu>
+
+       * srv_main.c: Move inclusion of k5-int.h before testing if
+               HAVE_STDARG_H is defined.
+
 Wed Feb 21 21:26:50 1996  Mark Eichin  <eichin@cygnus.com>
 
        * srv_main.c (xprintf): handle VARARGS.
index 042c432fed34ac7a2b52b918d13752474d6e3107..a640c0f08d42b7807df97ba25e7f95ab9a4a5959 100644 (file)
 #include <stdio.h>
 #include <sys/signal.h>
 #include <setjmp.h>
+#include "k5-int.h"
 #if defined(HAVE_STDARG_H) || defined(_WINDOWS) || defined (_MACINTOSH)
 #include <stdarg.h>
 #else
 #include <varargs.h>
 #define VARARGS
 #endif
-#include "k5-int.h"
 #include "com_err.h"
 #include "adm.h"
 #include "adm_proto.h"