1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-14 15:36:34 +00:00

FreeBSD now uses dirent.h rather than sys/dir.h

This commit is contained in:
Nick Briggs 2017-05-25 13:09:39 -07:00
parent 02569edbe0
commit a8fe2094fe

View File

@ -36,7 +36,9 @@ static char *id = "$Id: chardev.c,v 1.2 1999/01/03 02:06:50 sybalsky Exp $ Copyr
#include <sys/param.h>
#include <sys/time.h>
#ifndef OS5
#ifndef FREEBSD
#include <sys/dir.h>
#endif /* FREEBSD */
#endif /* OS5 */
#ifndef HPUX
#ifndef OS5
@ -64,7 +66,7 @@ static char *id = "$Id: chardev.c,v 1.2 1999/01/03 02:06:50 sybalsky Exp $ Copyr
#include "dbprint.h"
#ifdef ISC
#if defined(ISC) || defined(FREEBSD)
#include <dirent.h>
#endif