#ifndef	INIT_H
#define	INIT_H

#ifdef	HAVE_CONFIG_H
# include "./config.h"
#endif
#ifdef	STDC_HEADERS
# include <stdlib.h>
# include <stdarg.h>
# include <string.h>
#endif
#ifdef	HAVE_UNISTD_H
# include <unistd.h>						/* open, close */
#endif
#ifdef	HAVE_CTYPE_H
# include <ctype.h>						/* isupper, tolower */
#endif
#ifdef	HAVE_FNMATCH_H						/* fnmatch */
# include <fnmatch.h>
#else /* valid replacement */
# define fnmatch	strncasecmp
# define FNM_PATHNAME	NAMELEN_PATH
#endif
#ifdef	HAVE_SETJMP_H
# include <setjmp.h>
#endif
#ifdef	HAVE_STDIO_H
# include <stdio.h>
#endif
#ifdef	HAVE_SYS_FCNTL_H
# include <sys/fcntl.h>						/* read, write */
#endif
#ifdef	HAVE_SYS_STAT_H
# include <sys/stat.h>						/* mkdir */
#endif
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif

#endif
