Annotation of ansh/inc/global.h, revision 1.1.1.1.2.1

1.1       misho       1: /*************************************************************************
                      2:  * (C) 2011 AITNET - Sofia/Bulgaria - <office@aitnet.org>
                      3:  *  by Michael Pounov <misho@elwix.org>
                      4:  *
                      5:  * $Author: misho $
1.1.1.1.2.1! misho       6:  * $Id: global.h,v 1.1.1.1 2011/10/04 22:37:46 misho Exp $
1.1       misho       7:  *
                      8:  *************************************************************************/
                      9: #ifndef __GLOBAL_H
                     10: #define __GLOBAL_H
                     11: 
                     12: 
                     13: #include <stdio.h>
                     14: #include <stdlib.h>
                     15: #include <stdarg.h>
                     16: #include <string.h>
                     17: #include <syslog.h>
                     18: #include <unistd.h>
                     19: #include <fcntl.h>
                     20: #include <errno.h>
                     21: #include <signal.h>
                     22: #include <assert.h>
                     23: #include <netdb.h>
                     24: #include <pwd.h>
                     25: #include <ifaddrs.h>
                     26: #include <sys/types.h>
                     27: #include <sys/param.h>
                     28: #include <sys/limits.h>
                     29: #include <sys/wait.h>
                     30: #include <sys/event.h>
                     31: #include <sys/socket.h>
                     32: #include <sys/ioctl.h>
                     33: #include <sys/queue.h>
                     34: #include <sys/tty.h>
                     35: #include <openssl/md5.h>
                     36: #include <netinet/in.h>
                     37: #include <netinet/ip.h>
                     38: #include <netinet/ip_icmp.h>
                     39: #include <net/if.h>
                     40: #include <net/bpf.h>
                     41: #include <net/ethernet.h>
                     42: #include <arpa/inet.h>
                     43: #include <aitsched.h>
                     44: #include <aitcrc.h>
                     45: #include <aitio.h>
                     46: 
1.1.1.1.2.1! misho      47: #include "config.h"
1.1       misho      48: 
                     49: #include "proto.h"
                     50: #include "defs.h"
                     51: #include "utils.h"
                     52: 
                     53: 
                     54: #endif

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