From 544f8fd0beff5f34dcd567b8f83ff18bce07f56e Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Fri, 23 Jun 2000 03:08:18 +0000 Subject: [PATCH] protect sys/types.h from check-includes.pl removal recommendation --- lib/isc/unix/include/isc/dir.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/isc/unix/include/isc/dir.h b/lib/isc/unix/include/isc/dir.h index 94c8a4074f..3e928b819a 100644 --- a/lib/isc/unix/include/isc/dir.h +++ b/lib/isc/unix/include/isc/dir.h @@ -15,14 +15,14 @@ * SOFTWARE. */ -/* $Id: dir.h,v 1.7 2000/04/28 21:29:27 tale Exp $ */ +/* $Id: dir.h,v 1.8 2000/06/23 03:08:18 tale Exp $ */ /* Principal Authors: DCL */ #ifndef ISC_DIR_H #define ISC_DIR_H 1 -#include +#include /* Required on some systems. */ #include #include @@ -31,7 +31,7 @@ #define ISC_DIR_NAMEMAX 256 #define ISC_DIR_PATHMAX 1024 -typedef struct { +typedef struct isc_direntry { /* * Ideally, this should be NAME_MAX, but AIX does not define it by * default and dynamically allocating the space based on pathconf() @@ -42,7 +42,7 @@ typedef struct { unsigned int length; } isc_direntry_t; -typedef struct { +typedef struct isc_dir { int magic; /* * As with isc_direntry_t->name, making this "right" for all systems