Commit 351c7ab0 authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

solve getpid() process.h function order

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1129914 13f79535-47bb-0310-9956-ffa450edef68
parent 5c413c92
Loading
Loading
Loading
Loading
+8 −0
Changes for modules/core/mod_watchdog.c: 8 added lines, 0 removed lines.
Original line number Diff line number Diff line
@@ -17,6 +17,14 @@
/* Watchdog module.
 */

#include "apr.h"
#if APR_HAVE_UNISTD_H
#include <unistd.h>         /* for getpid() */
#endif
#if APR_HAVE_PROCESS_H
#include <process.h>        /* for getpid() on Win32 */
#endif

#include "mod_watchdog.h"
#include "ap_provider.h"
#include "ap_mpm.h"
+0 −7
Changes for modules/core/mod_watchdog.h: 0 added lines, 7 removed lines.
Original line number Diff line number Diff line
@@ -44,13 +44,6 @@
#include "apr_global_mutex.h"
#include "apr_thread_mutex.h"

#if APR_HAVE_UNISTD_H
#include <unistd.h>         /* for getpid() */
#endif
#if APR_HAVE_PROCESS_H
#include <process.h>        /* for getpid() on Win32 */
#endif

#ifdef __cplusplus
extern "C" {
#endif