diff options
author | Brian Havard <bjh@apache.org> | 2001-03-19 14:07:28 +0100 |
---|---|---|
committer | Brian Havard <bjh@apache.org> | 2001-03-19 14:07:28 +0100 |
commit | 7c7bd950fdde04837eca3d2ca4309b770d61856c (patch) | |
tree | 42f68904fc201a1504a6d1d656c9bbf1081a2a58 /server/mpm_common.c | |
parent | Under OS/2's emx gcc (and maybe others) uninitialized global variables don't (diff) | |
download | apache2-7c7bd950fdde04837eca3d2ca4309b770d61856c.tar.xz apache2-7c7bd950fdde04837eca3d2ca4309b770d61856c.zip |
Declaration of ap_reclaim_child_processes() in exports.c needs to be
conditional in the same way that the function's definition is so give it a
suitable macro that will be recogized by the scripts that make exports.c.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88537 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm_common.c')
-rw-r--r-- | server/mpm_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mpm_common.c b/server/mpm_common.c index cadc7f076c..d9ecdb00d8 100644 --- a/server/mpm_common.c +++ b/server/mpm_common.c @@ -86,7 +86,7 @@ #include <grp.h> #endif -#ifdef MPM_NEEDS_RECLAIM_CHILD_PROCESSES +#ifdef AP_MPM_NEEDS_RECLAIM_CHILD_PROCESSES void ap_reclaim_child_processes(int terminate) { int i; |