Annotation of libaitcli/inc/global.h, revision 1.2

1.1       misho       1: /*************************************************************************
                      2: * (C) 2010 AITNET ltd - Sofia/Bulgaria - <misho@aitbg.com>
                      3: *  by Michael Pounov <misho@openbsd-bg.org>
                      4: *
                      5: * $Author: misho $
1.2     ! misho       6: * $Id: global.h,v 1.1.1.1.2.2 2010/04/28 11:23:56 misho Exp $
1.1       misho       7: *
                      8: *************************************************************************/
                      9: #ifndef __GLOBAL_H
                     10: #define __GLOBAL_H
                     11: 
                     12: 
                     13: #define COMPAT_43TTY
                     14: 
                     15: #include "config.h"
                     16: 
                     17: #include <stdio.h>
                     18: #include <stdlib.h>
                     19: #include <stdarg.h>
                     20: #include <string.h>
                     21: #include <unistd.h>
                     22: #include <errno.h>
                     23: #include <termios.h>
1.2     ! misho      24: #include <libutil.h>
        !            25: #include <sys/types.h>
        !            26: #include <sys/socket.h>
1.1       misho      27: #include <sys/ioctl.h>
                     28: #include <sys/tty.h>
                     29: #include <sys/ioctl_compat.h>
1.2     ! misho      30: #include <sys/ttydefaults.h>
1.1       misho      31: #include <readline/readline.h>
                     32: #include <readline/history.h>
1.2     ! misho      33: #include <aittelnet.h>
        !            34: #include <arpa/telnet.h>
1.1       misho      35: 
                     36: 
                     37: #include "aitcli.h"
                     38: #include "defs.h"
                     39: 
                     40: 
                     41: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>