From baefe019d5c0db9d2d1f01b2bf872db3d31a0dff Mon Sep 17 00:00:00 2001 From: jb Date: Tue, 20 Nov 2007 01:49:00 +0000 Subject: Use a forward definition of an opaque structure rather than a void to avoid a strict alias type check failure in gcc 4.2. --- include/dirent.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/dirent.h') diff --git a/include/dirent.h b/include/dirent.h index d686daf..3c2f071 100644 --- a/include/dirent.h +++ b/include/dirent.h @@ -60,6 +60,7 @@ #define DIRBLKSIZ 1024 struct _telldir; /* see telldir.h */ +struct pthread_mutex; /* structure describing an open directory. */ typedef struct _dirdesc { @@ -71,7 +72,7 @@ typedef struct _dirdesc { long dd_seek; /* magic cookie returned by getdirentries */ long dd_rewind; /* magic cookie for rewinding */ int dd_flags; /* flags for readdir */ - void *dd_lock; /* hack to avoid including */ + struct pthread_mutex *dd_lock; /* lock */ struct _telldir *dd_td; /* telldir position recording */ } DIR; -- cgit v1.1