Deleted Added
full compact
includes.h (126277) includes.h (137019)
1/* $OpenBSD: includes.h,v 1.17 2002/01/26 16:44:22 stevesk Exp $ */
2/* $FreeBSD: head/crypto/openssh/includes.h 126277 2004-02-26 10:52:33Z des $ */
1/* $OpenBSD: includes.h,v 1.18 2004/06/13 15:03:02 djm Exp $ */
2/* $FreeBSD: head/crypto/openssh/includes.h 137019 2004-10-28 16:11:31Z des $ */
3
4/*
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
7 * All rights reserved
8 * This file includes most of the needed system headers.
9 *
10 * As far as I am concerned, the code I have written for this software

--- 18 unchanged lines hidden (view full) ---

29#include <signal.h>
30#include <stdlib.h>
31#include <string.h>
32#include <stdarg.h>
33#include <pwd.h>
34#include <grp.h>
35#include <time.h>
36#include <dirent.h>
3
4/*
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
7 * All rights reserved
8 * This file includes most of the needed system headers.
9 *
10 * As far as I am concerned, the code I have written for this software

--- 18 unchanged lines hidden (view full) ---

29#include <signal.h>
30#include <stdlib.h>
31#include <string.h>
32#include <stdarg.h>
33#include <pwd.h>
34#include <grp.h>
35#include <time.h>
36#include <dirent.h>
37#include <stddef.h>
37
38#ifdef HAVE_LIMITS_H
39# include <limits.h> /* For PATH_MAX */
40#endif
41#ifdef HAVE_GETOPT_H
42# include <getopt.h>
43#endif
44#ifdef HAVE_BSTRING_H

--- 131 unchanged lines hidden (view full) ---

176# include <libutil.h> /* Openpty on FreeBSD at least */
177#endif
178
179#if defined(KRB5) && defined(USE_AFS)
180# include <krb5.h>
181# include <kafs.h>
182#endif
183
38
39#ifdef HAVE_LIMITS_H
40# include <limits.h> /* For PATH_MAX */
41#endif
42#ifdef HAVE_GETOPT_H
43# include <getopt.h>
44#endif
45#ifdef HAVE_BSTRING_H

--- 131 unchanged lines hidden (view full) ---

177# include <libutil.h> /* Openpty on FreeBSD at least */
178#endif
179
180#if defined(KRB5) && defined(USE_AFS)
181# include <krb5.h>
182# include <kafs.h>
183#endif
184
185/*
186 * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
187 * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
188 */
189#ifdef __hpux
190# ifdef _INCLUDE__STDC__
191# undef _INCLUDE__STDC__
192# endif
193#endif
194
184#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
185
186#include "defines.h"
187
188#include "version.h"
189#include "openbsd-compat/openbsd-compat.h"
190#include "openbsd-compat/bsd-nextstep.h"
191
192#include "entropy.h"
193
194#endif /* INCLUDES_H */
195#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
196
197#include "defines.h"
198
199#include "version.h"
200#include "openbsd-compat/openbsd-compat.h"
201#include "openbsd-compat/bsd-nextstep.h"
202
203#include "entropy.h"
204
205#endif /* INCLUDES_H */