Annotation of mqtt/inc/global.h, revision 1.1.1.1.2.3
1.1 misho 1: #ifndef __GLOBAL_H
2: #define __GLOBAL_H
3:
4:
5: #include <stdio.h>
6: #include <stdlib.h>
7: #include <stdarg.h>
8: #include <string.h>
9: #include <unistd.h>
10: #include <fcntl.h>
11: #include <errno.h>
12: #include <assert.h>
1.1.1.1.2.1 misho 13: #include <syslog.h>
14: #include <dlfcn.h>
1.1.1.1.2.3! misho 15: #include <time.h>
1.1 misho 16: #include <sys/types.h>
1.1.1.1.2.2 misho 17: #include <sys/stat.h>
1.1 misho 18: #include <sys/socket.h>
19: #include <netinet/in.h>
20: #include <arpa/inet.h>
1.1.1.1.2.1 misho 21: #include <aitcfg.h>
22: #include <sqlite3.h>
1.1 misho 23:
24: #include "defs.h"
25: #include "aitmqtt.h"
26:
27:
28: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>