]> andersk Git - openssh.git/blob - includes.h
- (djm) Add replacement glob() from OpenBSD libc if the system glob is
[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 "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
32 #include <netinet/tcp.h>
33 #include <arpa/inet.h>
34
35 #include <stdio.h>
36 #include <ctype.h>
37 #include <errno.h>
38 #include <fcntl.h>
39 #include <signal.h>
40 #include <stdlib.h>
41 #include <string.h>
42 #include <stdarg.h>
43 #include <pwd.h>
44 #include <grp.h>
45 #include <time.h>
46 #include <dirent.h>
47
48 #ifdef HAVE_LIMITS_H
49 # include <limits.h>
50 #endif
51 #ifdef HAVE_GETOPT_H
52 # include <getopt.h>
53 #endif
54 #ifdef HAVE_BSTRING_H
55 # include <bstring.h>
56 #endif
57 #if defined(HAVE_GLOB_H) && defined(GLOB_HAS_ALTDIRFUNC)
58 # include <glob.h>
59 #endif
60 #ifdef HAVE_NETGROUP_H
61 # include <netgroup.h>
62 #endif
63 #if defined(HAVE_NETDB_H)
64 # include <netdb.h>
65 #endif
66 #ifdef HAVE_ENDIAN_H
67 # include <endian.h>
68 #endif
69 #ifdef HAVE_SYS_SELECT_H
70 # include <sys/select.h>
71 #endif
72 #ifdef HAVE_SYS_TIME_H
73 # include <sys/time.h>
74 #endif
75 #ifdef HAVE_SYS_BSDTTY_H
76 # include <sys/bsdtty.h>
77 #endif
78 #ifdef HAVE_TTYENT_H
79 # include <ttyent.h>
80 #endif
81 #ifdef USE_PAM
82 # include <security/pam_appl.h>
83 #endif
84 #ifdef HAVE_POLL_H
85 # include <poll.h>
86 #else
87 # ifdef HAVE_SYS_POLL_H
88 #  include <sys/poll.h>
89 # endif
90 #endif
91 #ifdef HAVE_SYS_SYSMACROS_H
92 # include <sys/sysmacros.h>
93 #endif
94 #ifdef HAVE_UTIME_H
95 # include <utime.h>
96 #endif
97 #ifdef HAVE_VIS_H
98 # include <vis.h>
99 #endif
100 #include "version.h"
101 #include "openbsd-compat/openbsd-compat.h"
102 #include "openbsd-compat/bsd-cygwin_util.h"
103 #include "entropy.h"
104
105 #endif /* INCLUDES_H */
This page took 0.053201 seconds and 5 git commands to generate.