Annotation of embedtools/inc/global.h, revision 1.1.1.1.2.21
1.1 misho 1: /*************************************************************************
2: * (C) 2009 AITNET - Sofia/Bulgaria - <office@aitbg.com>
3: * by Michael Pounov <misho@aitbg.com>
4: *
5: * $Author: misho $
1.1.1.1.2.21! misho 6: * $Id: global.h,v 1.1.1.1.2.20 2011/06/08 08:01:01 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>
1.1.1.1.2.1 misho 15: #include <stdarg.h>
1.1 misho 16: #include <string.h>
1.1.1.1.2.1 misho 17: #include <syslog.h>
1.1 misho 18: #include <unistd.h>
19: #include <fcntl.h>
20: #include <errno.h>
21: #include <signal.h>
22: #include <pwd.h>
1.1.1.1.2.12 misho 23: #include <time.h>
1.1.1.1.2.4 misho 24: #include <netdb.h>
1.1.1.1.2.14 misho 25: #include <poll.h>
1.1.1.1.2.15 misho 26: #include <sched.h>
1.1.1.1.2.18 misho 27: #include <assert.h>
1.1 misho 28: #include <sys/types.h>
29: #include <sys/param.h>
1.1.1.1.2.12 misho 30: #include <sys/limits.h>
1.1 misho 31: #include <sys/mount.h>
32: #include <sys/time.h>
33: #include <sys/wait.h>
34: #include <sys/event.h>
1.1.1.1.2.3 misho 35: #include <sys/stat.h>
1.1.1.1.2.4 misho 36: #include <sys/socket.h>
1.1.1.1.2.20 misho 37: #ifdef __FreeBSD__
1.1.1.1.2.8 misho 38: #include <sys/linker.h>
39: #include <sys/module.h>
1.1.1.1.2.20 misho 40: #endif
1.1.1.1.2.15 misho 41: #include <sys/mman.h>
42: #include <sys/uio.h>
1.1.1.1.2.20 misho 43: #include <net/if_arp.h>
44: #include <net/if.h>
1.1.1.1.2.4 misho 45: #include <netinet/in.h>
1.1.1.1.2.20 misho 46: #include <netinet/if_ether.h>
1.1.1.1.2.4 misho 47: #include <arpa/inet.h>
1.1.1.1.2.5 misho 48: #include <arpa/tftp.h>
1.1.1.1.2.2 misho 49: #include <libgen.h>
1.1.1.1.2.6 misho 50: #include <ifaddrs.h>
1.1.1.1.2.7 misho 51: #include <sys/ioctl.h>
1.1.1.1.2.16 misho 52: #include <sys/sysctl.h>
1.1.1.1.2.6 misho 53: #include <net/if.h>
54: #include <net/if_dl.h>
55: #include <net/if_types.h>
1.1.1.1.2.9 misho 56: #include <net/if_media.h>
1.1.1.1.2.20 misho 57: #ifdef __FreeBSD__
1.1.1.1.2.6 misho 58: #include <net/ethernet.h>
1.1.1.1.2.20 misho 59: #endif
1.1.1.1.2.17 misho 60: #include <net/route.h>
1.1.1.1.2.7 misho 61: #include <net/if_vlan_var.h>
1.1.1.1.2.20 misho 62: #ifdef __FreeBSD__
1.1 misho 63: #include <ufs/ufs/ufsmount.h>
1.1.1.1.2.17 misho 64: #include <net80211/ieee80211.h>
1.1.1.1.2.19 misho 65: #include <net80211/ieee80211_freebsd.h>
1.1.1.1.2.6 misho 66: #include <net80211/ieee80211_ioctl.h>
1.1.1.1.2.20 misho 67: #endif
1.1.1.1.2.11 misho 68: #include <openssl/md5.h>
1.1.1.1.2.13 misho 69: #include <aitio.h>
1.1 misho 70: #include <aitcfg.h>
1.1.1.1.2.10 misho 71: #include <aitsync.h>
1.1.1.1.2.12 misho 72: #include <aitcrc.h>
1.1 misho 73:
1.1.1.1.2.21! misho 74: #include "config.h"
! 75:
1.1 misho 76: #include "defs.h"
77:
78:
79: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>