diff options
author | Greg Stein <gstein@apache.org> | 2001-02-12 03:42:10 +0100 |
---|---|---|
committer | Greg Stein <gstein@apache.org> | 2001-02-12 03:42:10 +0100 |
commit | 8068b49327d67aa451482b6a0b76446d52cb570f (patch) | |
tree | 34140d918a70979470eab674788d4ad6f672a838 /server/scoreboard.c | |
parent | write these in terms of strchr and strrchr so the compiler can possibly use (diff) | |
download | apache2-8068b49327d67aa451482b6a0b76446d52cb570f.tar.xz apache2-8068b49327d67aa451482b6a0b76446d52cb570f.zip |
*) include the strings stuff the right way (some platforms use string.h;
apr_want figures all that out for us)
*) include ap_mpm.h to pick up a moved func declaration
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88102 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/scoreboard.c')
-rw-r--r-- | server/scoreboard.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/server/scoreboard.c b/server/scoreboard.c index 6587f840f8..9ce6970deb 100644 --- a/server/scoreboard.c +++ b/server/scoreboard.c @@ -61,10 +61,12 @@ #include "apr_portable.h" #include "apr_lib.h" +#define APR_WANT_STRFUNC +#include "apr_want.h" + #if APR_HAVE_SYS_TYPES_H #include <sys/types.h> #endif -#include <strings.h> #include "ap_config.h" #include "httpd.h" @@ -72,6 +74,7 @@ #include "http_main.h" #include "http_core.h" #include "http_config.h" +#include "ap_mpm.h" #include "mpm.h" #include "scoreboard.h" |