Annotation of libaitrpc/inc/global.h, revision 1.1.1.1.2.4

1.1       misho       1: /*************************************************************************
                      2: * (C) 2010 AITNET ltd - Sofia/Bulgaria - <misho@aitbg.com>
                      3: *  by Michael Pounov <misho@openbsd-bg.org>
                      4: *
                      5: * $Author: misho $
1.1.1.1.2.4! misho       6: * $Id: global.h,v 1.1.1.1.2.3 2010/07/08 08:02:02 misho Exp $
1.1       misho       7: *
                      8: *************************************************************************/
                      9: #ifndef __GLOBAL_H
                     10: #define __GLOBAL_H
                     11: 
                     12: 
                     13: #include "config.h"
                     14: 
                     15: #include <stdio.h>
                     16: #include <stdlib.h>
                     17: #include <stdarg.h>
                     18: #include <string.h>
                     19: #include <unistd.h>
                     20: #include <errno.h>
                     21: #include <assert.h>
                     22: #include <netdb.h>
                     23: #include <dlfcn.h>
                     24: #include <pthread.h>
1.1.1.1.2.1  misho      25: #include <fcntl.h>
1.1       misho      26: #include <sys/types.h>
                     27: #include <sys/param.h>
1.1.1.1.2.4! misho      28: #if !defined(__NetBSD__)
1.1       misho      29: #include <sys/limits.h>
1.1.1.1.2.4! misho      30: #endif
1.1       misho      31: #include <sys/socket.h>
1.1.1.1.2.2  misho      32: #include <sys/mman.h>
1.1       misho      33: #include <netinet/in.h>
                     34: #include <arpa/inet.h>
                     35: #include <aitcrc.h>
                     36: 
                     37: #include "aitrpc.h"
                     38: #include "defs.h"
                     39: 
                     40: 
                     41: #endif

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