view h/local.h @ 0:bce86c4163a3

Initial revision
author kono
date Mon, 18 Apr 2005 23:46:02 +0900
parents
children 441a2190cfae
line wrap: on
line source

/* local.h - fine the -lndir include file */
/* @(#)$Id$ */

#ifndef	BSD42
#include <sys/types.h>
#else	/* BSD42 */
#include <sys/param.h>
#endif

#ifndef	BSD42
#ifndef NDIR
#ifndef	SYS5DIR
#include <dir.h>		/* last choice */
#endif
#endif
#endif
#ifdef	SYS5DIR
#include <dirent.h>
#endif
#ifdef	NDIR
#include <ndir.h>
#endif
#if defined(BSD42) && !defined(SYS5DIR)
#include <sys/dir.h>
#endif

#include <sys/stat.h>