From: Brian Havard Date: Sun, 21 Jan 2001 14:52:12 +0000 (+0000) Subject: Add headers needed for getpwnam & getgrnam prototypes & types. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3551687e26cfe3e6dcf44a429a0836cbfaf5a5e2;p=apache Add headers needed for getpwnam & getgrnam prototypes & types. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87777 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm_common.c b/server/mpm_common.c index 375eadd791..83d339e958 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -78,6 +78,13 @@ #include "mpm.h" #include "mpm_common.h" +#ifdef HAVE_PWD_H +#include +#endif +#ifdef HAVE_GRP_H +#include +#endif + #ifdef MPM_NEEDS_RECLAIM_CHILD_PROCESSES void ap_reclaim_child_processes(int terminate) {