]> andersk Git - openssh.git/blob - includes.h
Sync RCSIDs from Kevin's already committed patch
[openssh.git] / includes.h
1 /*      $OpenBSD: includes.h,v 1.16 2001/12/19 15:43:11 stevesk Exp $   */
2
3 /*
4  * Author: Tatu Ylonen <ylo@cs.hut.fi>
5  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6  *                    All rights reserved
7  * This file includes most of the needed system headers.
8  *
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".
14  */
15
16 #ifndef INCLUDES_H
17 #define INCLUDES_H
18
19 #define RCSID(msg) \
20 static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
21
22 #include "config.h"
23
24 #include "openbsd-compat/bsd-nextstep.h"
25
26 #include <sys/types.h>
27 #include <sys/socket.h>
28 #include <sys/ioctl.h>
29 #include <sys/wait.h>
30 #include <sys/resource.h>
31 #include <sys/utsname.h>
32
33 #include <netinet/tcp.h>
34 #include <arpa/inet.h>
35
36 #include <stdio.h>
37 #include <ctype.h>
38 #include <errno.h>
39 #include <fcntl.h>
40 #include <signal.h>
41 #include <stdlib.h>
42 #include <string.h>
43 #include <stdarg.h>
44 #include <pwd.h>
45 #include <grp.h>
46 #include <time.h>
47 #include <dirent.h>
48
49 #ifdef HAVE_LIMITS_H
50 # include <limits.h>
51 #endif
52 #ifdef HAVE_GETOPT_H
53 # include <getopt.h>
54 #endif
55 #ifndef HAVE_GETOPT_OPTRESET
56 #define getopt(ac, av, o)  BSDgetopt(ac, av, o)
57 #endif
58 #ifdef HAVE_BSTRING_H
59 # include <bstring.h>
60 #endif
61 #if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC) && \
62     defined(GLOB_HAS_GL_MATCHC)
63 # include <glob.h>
64 #endif
65 #ifdef HAVE_NETGROUP_H
66 # include <netgroup.h>
67 #endif
68 #if defined(HAVE_NETDB_H)
69 # include <netdb.h>
70 #endif
71 #ifdef HAVE_ENDIAN_H
72 # include <endian.h>
73 #endif
74 #ifdef HAVE_SYS_SELECT_H
75 # include <sys/select.h>
76 #endif
77 #ifdef HAVE_SYS_TIME_H
78 # include <sys/time.h>
79 #endif
80 #ifdef HAVE_SYS_BSDTTY_H
81 # include <sys/bsdtty.h>
82 #endif
83 #ifdef HAVE_TTYENT_H
84 # include <ttyent.h>
85 #endif
86 #ifdef USE_PAM
87 # include <security/pam_appl.h>
88 #endif
89 #ifdef HAVE_POLL_H
90 # include <poll.h>
91 #else
92 # ifdef HAVE_SYS_POLL_H
93 #  include <sys/poll.h>
94 # endif
95 #endif
96 #ifdef HAVE_SYS_SYSMACROS_H
97 # include <sys/sysmacros.h>
98 #endif
99 #ifdef HAVE_UTIME_H
100 # include <utime.h>
101 #endif
102 #include "version.h"
103 #include "openbsd-compat/openbsd-compat.h"
104 #include "openbsd-compat/bsd-cygwin_util.h"
105 #include "entropy.h"
106
107 #endif /* INCLUDES_H */
This page took 0.100435 seconds and 5 git commands to generate.