summaryrefslogtreecommitdiff
path: root/locks
diff options
context:
space:
mode:
authorjerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68>2006-07-12 17:52:33 +0000
committerjerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68>2006-07-12 17:52:33 +0000
commit25c1764ccf1245fc91aba995e6dd0b5c79b85420 (patch)
tree2e662d0bb012c3308f69e22c065c7e16212b1d1e /locks
parent964c19e62cae02c61c67443e477f6dc927bcc337 (diff)
downloadlibapr-25c1764ccf1245fc91aba995e6dd0b5c79b85420.tar.gz
Fix up Win32-private includes to bring it in line with all other platforms.
Originally titled: [patch 10/17] include path prefix win32/ Submitted by: John Mark Vandenberg Reviewed by: Will Rowe (concept), Justin Erenkrantz git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@421349 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'locks')
-rw-r--r--locks/win32/thread_cond.c4
-rw-r--r--locks/win32/thread_rwlock.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/locks/win32/thread_cond.c b/locks/win32/thread_cond.c
index 483f3300e..8e8b5b524 100644
--- a/locks/win32/thread_cond.c
+++ b/locks/win32/thread_cond.c
@@ -18,8 +18,8 @@
#include "apr_private.h"
#include "apr_general.h"
#include "apr_strings.h"
-#include "win32/apr_arch_thread_mutex.h"
-#include "win32/apr_arch_thread_cond.h"
+#include "apr_arch_thread_mutex.h"
+#include "apr_arch_thread_cond.h"
#include "apr_portable.h"
static apr_status_t thread_cond_cleanup(void *data)
diff --git a/locks/win32/thread_rwlock.c b/locks/win32/thread_rwlock.c
index 9207d7929..2e4ec62b8 100644
--- a/locks/win32/thread_rwlock.c
+++ b/locks/win32/thread_rwlock.c
@@ -18,7 +18,7 @@
#include "apr_private.h"
#include "apr_general.h"
#include "apr_strings.h"
-#include "win32/apr_arch_thread_rwlock.h"
+#include "apr_arch_thread_rwlock.h"
#include "apr_portable.h"
static apr_status_t thread_rwlock_cleanup(void *data)