]> andersk Git - openssh.git/blob - includes.h
- (bal) Reorder. Move all bsd-*, fake-*, next-*, and cygwin* stuff to
[openssh.git] / includes.h
1 /*      $OpenBSD: includes.h,v 1.14 2001/01/29 01:58:16 niklas 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 "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
32 #ifndef HAVE_CYGWIN
33 #include <netinet/tcp.h>
34 #endif
35 #include <arpa/inet.h>
36
37 #include <stdio.h>
38 #include <ctype.h>
39 #include <errno.h>
40 #include <fcntl.h>
41 #include <signal.h>
42 #include <stdlib.h>
43 #include <string.h>
44 #include <stdarg.h>
45 #include <pwd.h>
46 #include <grp.h>
47 #include <time.h>
48 #include <dirent.h>
49
50 #ifdef HAVE_GETOPT_H
51 #include <getopt.h>
52 #endif
53 #ifdef HAVE_BSTRING_H
54 # include <bstring.h>
55 #endif 
56 #ifdef HAVE_NETGROUP_H
57 # include <netgroup.h>
58 #endif 
59 #if defined(HAVE_NETDB_H)
60 # include <netdb.h>
61 #endif 
62 #ifdef HAVE_ENDIAN_H
63 # include <endian.h>
64 #endif
65 #ifdef HAVE_SYS_SELECT_H
66 # include <sys/select.h>
67 #endif
68 #ifdef HAVE_SYS_TIME_H
69 # include <sys/time.h>
70 #endif
71 #ifdef HAVE_SYS_BSDTTY_H
72 # include <sys/bsdtty.h>
73 #endif
74 #ifdef HAVE_TTYENT_H
75 # include <ttyent.h>
76 #endif
77 #ifdef USE_PAM
78 # include <security/pam_appl.h>
79 #endif
80 #ifdef HAVE_POLL_H
81 # include <poll.h>
82 #else
83 # ifdef HAVE_SYS_POLL_H
84 #  include <sys/poll.h>
85 # endif
86 #endif
87 #ifdef HAVE_SYS_SYSMACROS_H
88 # include <sys/sysmacros.h>
89 #endif
90 #ifdef HAVE_UTIME_H
91 # include <utime.h>
92 #endif
93 #ifdef HAVE_VIS_H
94 # include <vis.h>
95 #endif
96 #include "version.h"
97 #include "openbsd-compat.h"
98 #include "bsd-cygwin_util.h"
99 #include "entropy.h"
100
101 #endif /* INCLUDES_H */
This page took 0.734423 seconds and 5 git commands to generate.