From bacf6f7fd8421b3ed70ae9e8f8ab9a26bb58fe34 Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Thu, 23 Nov 1995 17:12:11 +0000 Subject: [PATCH] include sys/types.h as mandated by X/Open XPG 4.2; from agc@sde.uts.amdahl.com; netbsd pr#1785 --- src/include/dirent.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/include/dirent.h b/src/include/dirent.h index f5301cbb..920421b5 100644 --- a/src/include/dirent.h +++ b/src/include/dirent.h @@ -38,6 +38,13 @@ #ifndef _DIRENT_H_ #define _DIRENT_H_ +/* + * POSIX doesn't mandate this, but X/Open XPG 4.2 does. + */ +#ifndef _POSIX_SOURCE +#include +#endif + /* * The kernel defines the format of directory entries returned by * the getdirentries(2) system call.