[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.46

1.46    ! stevesk     1: /* $OpenBSD: includes.h,v 1.45 2006/07/06 16:03:53 stevesk Exp $ */
1.14      niklas      2:
1.1       deraadt     3: /*
1.10      deraadt     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.
1.12      markus      8:  *
1.13      deraadt     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".
1.10      deraadt    14:  */
1.1       deraadt    15:
                     16: #ifndef INCLUDES_H
                     17: #define INCLUDES_H
                     18:
1.6       deraadt    19: #include <sys/types.h>
                     20: #include <sys/param.h>
                     21: #include <sys/time.h>
1.1       deraadt    22:
1.8       deraadt    23: #include <netdb.h>
1.18      djm        24: #include <stddef.h>
1.1       deraadt    25: #include <stdio.h>
                     26: #include <errno.h>
                     27: #include <fcntl.h>
                     28: #include <stdlib.h>
                     29: #include <string.h>
                     30: #include <stdarg.h>
                     31: #include <unistd.h>
                     32: #include <time.h>
                     33:
1.10      deraadt    34: #endif                         /* INCLUDES_H */