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

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.3.2.1 ! misho       6: * $Id: global.h,v 1.3 2011/03/16 17:24:03 misho Exp $
1.1       misho       7: *
                      8: *************************************************************************/
                      9: #ifndef __GLOBAL_H
                     10: #define __GLOBAL_H
                     11: 
                     12: 
                     13: #include "config.h"
                     14: 
                     15: #include <stdio.h>
                     16: #include <stdlib.h>
                     17: #include <stdarg.h>
                     18: #include <string.h>
                     19: #include <unistd.h>
                     20: #include <errno.h>
                     21: #include <termios.h>
1.3       misho      22: #include <poll.h>
                     23: #include <ctype.h>
1.3.2.1 ! misho      24: #ifdef HAVE_LIBUTIL_H
        !            25:        #include <libutil.h>
        !            26: #else
        !            27:        #include <util.h>
        !            28: #endif
1.2       misho      29: #include <sys/types.h>
1.3       misho      30: #include <sys/param.h>
                     31: #include <sys/stat.h>
                     32: #include <sys/queue.h>
                     33: #include <aitio.h>
1.2       misho      34: #include <sys/socket.h>
1.3       misho      35: #include <sys/wait.h>
1.2       misho      36: #include <arpa/telnet.h>
1.1       misho      37: 
                     38: 
                     39: #include "aitcli.h"
                     40: #include "defs.h"
                     41: 
                     42: 
                     43: #endif

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