]> andersk Git - openssh.git/blame - includes.h
- Fix strerror() in bsd-misc.c
[openssh.git] / includes.h
CommitLineData
23c2a7a5 1/* $OpenBSD: includes.h,v 1.14 2001/01/29 01:58:16 niklas Exp $ */
2
8efc0c15 3/*
5260325f 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
5260325f 7 * This file includes most of the needed system headers.
6ae2364d 8 *
bcbf86ec 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".
5260325f 14 */
8efc0c15 15
16#ifndef INCLUDES_H
17#define INCLUDES_H
18
19#define RCSID(msg) \
20static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
21
793edc37 22#include "config.h"
23
9c8dbb1b 24#include "bsd-nextstep.h"
729bfe59 25
8efc0c15 26#include <sys/types.h>
27#include <sys/socket.h>
8efc0c15 28#include <sys/ioctl.h>
8efc0c15 29#include <sys/wait.h>
8efc0c15 30#include <sys/resource.h>
31
8efc0c15 32#include <netinet/tcp.h>
8efc0c15 33#include <arpa/inet.h>
8efc0c15 34
8efc0c15 35#include <stdio.h>
36#include <ctype.h>
37#include <errno.h>
38#include <fcntl.h>
8efc0c15 39#include <signal.h>
8efc0c15 40#include <stdlib.h>
41#include <string.h>
42#include <stdarg.h>
43#include <pwd.h>
44#include <grp.h>
8efc0c15 45#include <time.h>
8efc0c15 46#include <dirent.h>
2f125ca1 47
6f68f28a 48#ifdef HAVE_LIMITS_H
49# include <limits.h>
50#endif
2f125ca1 51#ifdef HAVE_GETOPT_H
6f68f28a 52# include <getopt.h>
3c62e7eb 53#endif
d94aa2ae 54#ifdef HAVE_BSTRING_H
55# include <bstring.h>
2b87da3b 56#endif
c75a1a66 57#ifdef HAVE_NETGROUP_H
58# include <netgroup.h>
2b87da3b 59#endif
0dd78cd8 60#if defined(HAVE_NETDB_H)
d94aa2ae 61# include <netdb.h>
2b87da3b 62#endif
4cca272e 63#ifdef HAVE_ENDIAN_H
64# include <endian.h>
65#endif
793edc37 66#ifdef HAVE_SYS_SELECT_H
67# include <sys/select.h>
68#endif
b09a984b 69#ifdef HAVE_SYS_TIME_H
70# include <sys/time.h>
71#endif
a7effaac 72#ifdef HAVE_SYS_BSDTTY_H
73# include <sys/bsdtty.h>
74#endif
dbaa2e87 75#ifdef HAVE_TTYENT_H
76# include <ttyent.h>
77#endif
d94aa2ae 78#ifdef USE_PAM
793edc37 79# include <security/pam_appl.h>
beb43d31 80#endif
a5c9cd31 81#ifdef HAVE_POLL_H
82# include <poll.h>
83#else
84# ifdef HAVE_SYS_POLL_H
85# include <sys/poll.h>
86# endif
87#endif
20af321f 88#ifdef HAVE_SYS_SYSMACROS_H
89# include <sys/sysmacros.h>
90#endif
89c7e31c 91#ifdef HAVE_UTIME_H
92# include <utime.h>
93#endif
94ec8c6b 94#ifdef HAVE_VIS_H
95# include <vis.h>
96#endif
4cca272e 97#include "version.h"
3dc1102e 98#include "openbsd-compat.h"
9c8dbb1b 99#include "bsd-cygwin_util.h"
35484284 100#include "entropy.h"
101
2f125ca1 102#endif /* INCLUDES_H */
This page took 0.102869 seconds and 5 git commands to generate.