1 /* $OpenBSD: includes.h,v 1.53 2006/07/22 19:08:54 stevesk Exp $ */
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
7 * This file includes most of the needed system headers.
9 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
21 #define _GNU_SOURCE /* activate extra prototypes for glibc */
28 # include <limits.h> /* For PATH_MAX */
36 #if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
37 defined(GLOB_HAS_GL_MATCHC)
49 #ifdef HAVE_MAILLOCK_H
50 # include <maillock.h> /* For _PATH_MAILDIR */
60 *-*-nto-qnx needs these headers for strcasecmp and LASTLOG_FILE respectively
73 # ifdef HAVE_TV_IN_UTMPX
74 # include <sys/time.h>
82 #include <sys/types.h>
83 #ifdef HAVE_SYS_TIME_H
84 # include <sys/time.h> /* For timersub */
86 #ifdef HAVE_SYS_SELECT_H
87 # include <sys/select.h>
89 #ifdef HAVE_SYS_BSDTTY_H
90 # include <sys/bsdtty.h>
92 #include <sys/param.h> /* For MAXPATHLEN and roundup() */
97 #ifdef HAVE_SYS_BITYPES_H
98 # include <sys/bitypes.h> /* For u_intXX_t */
100 #ifdef HAVE_SYS_CDEFS_H
101 # include <sys/cdefs.h> /* For __P() */
103 #ifdef HAVE_SYS_STAT_H
104 # include <sys/stat.h> /* For S_* constants and macros */
106 #ifdef HAVE_SYS_SYSMACROS_H
107 # include <sys/sysmacros.h> /* For MIN, MAX, etc */
109 #ifdef HAVE_SYS_MMAN_H
110 #include <sys/mman.h> /* for MAP_ANONYMOUS */
112 #ifdef HAVE_SYS_STRTIO_H
113 #include <sys/strtio.h> /* for TIOCCBRK on HP-UX */
115 #if defined(HAVE_SYS_PTMS_H) && defined(HAVE_DEV_PTMX)
116 # if defined(HAVE_SYS_STREAM_H)
117 # include <sys/stream.h> /* reqd for queue_t on Solaris 2.5.1 */
119 #include <sys/ptms.h> /* for grantpt() and friends */
122 #include <netinet/in_systm.h> /* For typedefs */
123 #ifdef HAVE_RPC_TYPES_H
124 # include <rpc/types.h> /* For INADDR_LOOPBACK */
127 #if defined(HAVE_SECURITY_PAM_APPL_H)
128 # include <security/pam_appl.h>
129 #elif defined (HAVE_PAM_PAM_APPL_H)
130 # include <pam/pam_appl.h>
133 #ifdef HAVE_READPASSPHRASE_H
134 # include <readpassphrase.h>
149 #ifdef HAVE_LIBUTIL_H
150 # include <libutil.h> /* Openpty on FreeBSD at least */
153 #if defined(KRB5) && defined(USE_AFS)
158 #if defined(HAVE_SYS_SYSLOG_H)
159 # include <sys/syslog.h>
163 * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
164 * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
166 #ifdef GETSPNAM_CONFLICTING_DEFS
167 # ifdef _INCLUDE__STDC__
168 # undef _INCLUDE__STDC__
172 #include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
176 #include "openbsd-compat/openbsd-compat.h"
177 #include "openbsd-compat/bsd-nextstep.h"
181 #endif /* INCLUDES_H */