Annotation of embedtools/inc/global.h, revision 1.1.1.1.2.6
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.6! misho 6: * $Id: global.h,v 1.1.1.1.2.5 2009/11/15 21:33:17 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.4 misho 23: #include <netdb.h>
1.1 misho 24: #include <sys/types.h>
25: #include <sys/param.h>
26: #include <sys/mount.h>
27: #include <sys/time.h>
28: #include <sys/wait.h>
29: #include <sys/event.h>
1.1.1.1.2.3 misho 30: #include <sys/stat.h>
1.1.1.1.2.4 misho 31: #include <sys/socket.h>
32: #include <netinet/in.h>
33: #include <arpa/inet.h>
1.1.1.1.2.5 misho 34: #include <arpa/tftp.h>
1.1.1.1.2.2 misho 35: #include <libgen.h>
1.1.1.1.2.6! misho 36: #include <ifaddrs.h>
! 37: #include <net/if.h>
! 38: #include <net/if_dl.h>
! 39: #include <net/if_types.h>
! 40: #include <net/ethernet.h>
1.1 misho 41: #include <ufs/ufs/ufsmount.h>
1.1.1.1.2.6! misho 42: #include <sys/ioctl.h>
! 43: #include <net80211/ieee80211_ioctl.h>
1.1 misho 44: #include <aitcfg.h>
45:
46: #include "defs.h"
47:
48:
49: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>