[BACK]Return to includes.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/includes.h, Revision 1.6

1.1       deraadt     1: /*
                      2:
                      3: includes.h
                      4:
                      5: Author: Tatu Ylonen <ylo@cs.hut.fi>
                      6:
                      7: Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
                      8:                    All rights reserved
                      9:
                     10: Created: Thu Mar 23 16:29:37 1995 ylo
                     11:
                     12: This file includes most of the needed system headers.
                     13:
                     14: */
                     15:
1.6     ! deraadt    16: /* RCSID("$Id: includes.h,v 1.5 1999/09/30 05:03:04 deraadt Exp $"); */
1.1       deraadt    17:
                     18: #ifndef INCLUDES_H
                     19: #define INCLUDES_H
                     20:
                     21: /* Note: autoconf documentation tells to use the <...> syntax and have -I. */
                     22: #include <config.h>
                     23:
1.6     ! deraadt    24: #include <sys/types.h>
        !            25: #include <sys/socket.h>
        !            26: #include <sys/select.h>
        !            27: #include <sys/param.h>
        !            28: #include <sys/ioctl.h>
        !            29: #include <sys/endian.h>
        !            30: #include <sys/stat.h>
        !            31: #include <sys/wait.h>
        !            32: #include <sys/time.h>
        !            33: #include <sys/un.h>
        !            34: #include <sys/resource.h>
1.1       deraadt    35:
1.3       dugsong    36: #include <netgroup.h>
1.1       deraadt    37: #include <stdio.h>
                     38: #include <ctype.h>
                     39: #include <errno.h>
                     40: #include <fcntl.h>
                     41: #include <assert.h>
                     42: #include <signal.h>
                     43:
                     44: #include <termios.h>
                     45: #include <stdlib.h>
                     46: #include <string.h>
                     47: #include <stdarg.h>
                     48:
                     49: #include <netinet/in.h>
                     50: #include <netinet/in_systm.h>
                     51: #include <netinet/tcp.h>
                     52: #include <arpa/inet.h>
                     53: #include <netdb.h>
                     54:
                     55: #include <pwd.h>
                     56: #include <grp.h>
                     57: #include <unistd.h>
                     58: #include <time.h>
                     59: #include <paths.h>
                     60:
                     61: #include <dirent.h>
                     62:
1.6     ! deraadt    63: #define AF_UNIX_SIZE(unaddr) sizeof(unaddr)
1.1       deraadt    64:
1.6     ! deraadt    65: #include "version.h"
1.1       deraadt    66:
                     67: #endif /* INCLUDES_H */