diff options
Diffstat (limited to 'Modules')
| -rw-r--r-- | Modules/posixmodule.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index b26c89eccf..346de544f5 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -28,6 +28,7 @@ corresponding Unix manual entries for more information on calls."; #include <sys/types.h> #include <sys/stat.h> + #ifdef HAVE_SYS_WAIT_H #include <sys/wait.h> /* For WNOHANG */ #endif @@ -40,6 +41,10 @@ corresponding Unix manual entries for more information on calls."; #include <fcntl.h> #endif /* HAVE_FCNTL_H */ +#ifdef HAVE_GRP_H +#include <grp.h> +#endif + /* pick up declaration of confstr on some systems? */ #ifdef HAVE_UNISTD_H #include <unistd.h> |
