diff options
author | Ezra Peisach <epeisach@mit.edu> | 2007-04-11 04:31:52 +0000 |
---|---|---|
committer | Ezra Peisach <epeisach@mit.edu> | 2007-04-11 04:31:52 +0000 |
commit | ed744623cc07488a2931081a36b9fc2e561dc901 (patch) | |
tree | 85e5453f1e94be3f4e04efc0919c256a00cc64ae /src/appl/gss-sample/gss-misc.c | |
parent | 4af76143fa37522cffbd79a726cfc24b63318b21 (diff) | |
download | krb5-ed744623cc07488a2931081a36b9fc2e561dc901.tar.gz krb5-ed744623cc07488a2931081a36b9fc2e561dc901.tar.xz krb5-ed744623cc07488a2931081a36b9fc2e561dc901.zip |
Move autoconf.h inclusion before tests for HAVE_UNISTD_H and HAVE_SYS_TIME_H
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19423 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/appl/gss-sample/gss-misc.c')
-rw-r--r-- | src/appl/gss-sample/gss-misc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/appl/gss-sample/gss-misc.c b/src/appl/gss-sample/gss-misc.c index 2e10051188..cfaa0f8bd8 100644 --- a/src/appl/gss-sample/gss-misc.c +++ b/src/appl/gss-sample/gss-misc.c @@ -57,6 +57,9 @@ static char *rcsid = "$Header$"; #include <sys/socket.h> #endif #include <errno.h> + +#include <autoconf.h> + #ifdef HAVE_UNISTD_H #include <unistd.h> #endif @@ -72,7 +75,6 @@ static char *rcsid = "$Header$"; #include <gssapi/gssapi_generic.h> #include "gss-misc.h" -#include <autoconf.h> #ifdef HAVE_STDLIB_H #include <stdlib.h> #else |