]> andersk Git - openssh.git/blob - includes.h
20001229
[openssh.git] / includes.h
1 /*
2  * Author: Tatu Ylonen <ylo@cs.hut.fi>
3  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4  *                    All rights reserved
5  * This file includes most of the needed system headers.
6  *
7  * As far as I am concerned, the code I have written for this software
8  * can be used freely for any purpose.  Any derived versions of this
9  * software must be clearly marked as such, and if the derived work is
10  * incompatible with the protocol description in the RFC file, it must be
11  * called by a name other than "ssh" or "Secure Shell".
12  */
13
14 #ifndef INCLUDES_H
15 #define INCLUDES_H
16
17 #define RCSID(msg) \
18 static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
19
20 #include "config.h"
21
22 #include "next-posix.h"
23 #include "news4-posix.h"
24
25 #include <sys/types.h>
26 #include <sys/socket.h>
27 #include <sys/ioctl.h>
28 #include <sys/wait.h>
29 #include <sys/resource.h>
30
31 #ifndef HAVE_CYGWIN
32 #include <netinet/tcp.h>
33 #endif
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_GETOPT_H
50 #include <getopt.h>
51 #endif
52 #ifdef HAVE_BSTRING_H
53 # include <bstring.h>
54 #endif 
55 #ifdef HAVE_NETGROUP_H
56 # include <netgroup.h>
57 #endif 
58 #if defined(HAVE_NETDB_H)
59 # include <netdb.h>
60 #endif 
61 #ifdef HAVE_ENDIAN_H
62 # include <endian.h>
63 #endif
64 #ifdef HAVE_SYS_SELECT_H
65 # include <sys/select.h>
66 #endif
67 #ifdef HAVE_SYS_TIME_H
68 # include <sys/time.h>
69 #endif
70 #ifdef HAVE_SYS_BSDTTY_H
71 # include <sys/bsdtty.h>
72 #endif
73 #ifdef HAVE_TTYENT_H
74 # include <ttyent.h>
75 #endif
76 #ifdef USE_PAM
77 # include <security/pam_appl.h>
78 #endif
79 #ifdef HAVE_POLL_H
80 # include <poll.h>
81 #else
82 # ifdef HAVE_SYS_POLL_H
83 #  include <sys/poll.h>
84 # endif
85 #endif
86 #ifdef HAVE_SYS_SYSMACROS_H
87 # include <sys/sysmacros.h>
88 #endif
89 #ifdef HAVE_VIS_H
90 # include <vis.h>
91 #endif
92 #include "version.h"
93 #include "openbsd-compat.h"
94 #include "cygwin_util.h"
95 #include "entropy.h"
96
97 #endif /* INCLUDES_H */
This page took 0.198958 seconds and 5 git commands to generate.