Annotation of suX/inc/global.h, revision 1.3

1.1       misho       1: /*************************************************************************
                      2:  * (C) 2011 AITNET - Sofia/Bulgaria - <office@aitbg.com>
                      3:  *  by Michael Pounov <misho@aitbg.com>
                      4:  *
                      5:  * $Author: misho $
1.3     ! misho       6:  * $Id: global.h,v 1.2.4.1 2013/04/09 08:17:40 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>
                     15: #include <stdarg.h>
                     16: #include <string.h>
                     17: #include <unistd.h>
                     18: #include <errno.h>
                     19: #include <assert.h>
                     20: #include <pwd.h>
                     21: #include <grp.h>
                     22: #include <login_cap.h>
                     23: #include <syslog.h>
                     24: #include <sys/types.h>
                     25: #include <sys/param.h>
                     26: #include <sys/stat.h>
                     27: #include <sys/resource.h>
1.3     ! misho      28: #include <elwix.h>
1.1       misho      29: #include <aitcfg.h>
                     30: 
1.2       misho      31: #include "config.h"
1.1       misho      32: 
                     33: #include "defs.h"
                     34: 
                     35: 
                     36: #endif

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