Annotation of mqtt/inc/global.h, revision 1.1.1.1.2.11

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.1.1.2.4  misho      16: #include <netdb.h>
1.1.1.1.2.8  misho      17: #include <signal.h>
1.1.1.1.2.5  misho      18: #include <pwd.h>
1.1.1.1.2.7  misho      19: #include <pthread.h>
1.1.1.1.2.10  misho      20: #include <poll.h>
1.1       misho      21: #include <sys/types.h>
1.1.1.1.2.2  misho      22: #include <sys/stat.h>
1.1.1.1.2.8  misho      23: #include <sys/wait.h>
1.1.1.1.2.11! misho      24: #include <sys/mman.h>
1.1       misho      25: #include <sys/socket.h>
                     26: #include <netinet/in.h>
                     27: #include <arpa/inet.h>
1.1.1.1.2.8  misho      28: #include <aitio.h>
1.1.1.1.2.1  misho      29: #include <aitcfg.h>
1.1.1.1.2.6  misho      30: #include <aitsched.h>
1.1.1.1.2.1  misho      31: #include <sqlite3.h>
1.1       misho      32: 
                     33: #include "aitmqtt.h"
1.1.1.1.2.9  misho      34: #include "defs.h"
1.1       misho      35: 
                     36: 
                     37: #endif

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