Annotation of libaitsync/inc/global.h, revision 1.1.1.1.2.2

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.2! misho       6: * $Id: global.h,v 1.1.1.1.2.1 2010/07/13 15:04:43 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 <stdarg.h>
                     17: #include <string.h>
                     18: #include <unistd.h>
                     19: #include <fcntl.h>
                     20: #include <stdlib.h>
                     21: #include <errno.h>
                     22: #include <assert.h>
                     23: #include <zlib.h>
1.1.1.1.2.1  misho      24: #include <dirent.h>
1.1       misho      25: #include <sys/types.h>
1.1.1.1.2.2! misho      26: #if !defined(__NetBSD__)
1.1       misho      27: #include <sys/limits.h>
1.1.1.1.2.2! misho      28: #endif
1.1       misho      29: #include <sys/param.h>
                     30: #include <sys/stat.h>
                     31: #include <sys/mman.h>
                     32: #include <openssl/md5.h>
                     33: #include <aitcrc.h>
                     34: 
                     35: #include "aitsync.h"
                     36: #include "defs.h"
                     37: 
                     38: 
                     39: #endif

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