summaryrefslogtreecommitdiff
path: root/src/port
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-03-31 13:44:17 +0200
committerAndreas Baumann <abaumann@yahoo.com>2009-03-31 13:44:17 +0200
commitd2b0696d8fa0ce47e0bc525581b6b9254637984b (patch)
tree1c969b1005256bb47e1791ca919497f3276d00b6 /src/port
parent038f9a5b1197b4f92c85d0c7d2cfd672589c2231 (diff)
downloadwolfbones-d2b0696d8fa0ce47e0bc525581b6b9254637984b.tar.gz
wolfbones-d2b0696d8fa0ce47e0bc525581b6b9254637984b.tar.bz2
created subdir for threading stuff, moved mutex there
Diffstat (limited to 'src/port')
-rw-r--r--src/port/string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/port/string.c b/src/port/string.c
index 83b1daa..398788c 100644
--- a/src/port/string.c
+++ b/src/port/string.c
@@ -47,7 +47,7 @@ char *wolf_port_strdup( const char *s ) {
#include "port/stdbool.h" /* for bool */
#include <sys/types.h> /* for size_t */
#include <errno.h> /* for errno */
-#include "mutex.h" /* for mutexes */
+#include "threads/mutex.h" /* for mutexes */
static bool mutex_initialized = false;
static wolf_mutex_t mutex;