diff --git a/src/xpdev/dirwrap.c b/src/xpdev/dirwrap.c
index 6591fb0e4f2e2c42f845c0a2a4365863893ca3bd..eec35b1982785d222bff0cacfcc2bd0b2c8d58e1 100644
--- a/src/xpdev/dirwrap.c
+++ b/src/xpdev/dirwrap.c
@@ -8,7 +8,7 @@
  * @format.tab-size 4		(Plain Text/Source Code File Header)			*
  * @format.use-tabs true	(see http://www.synchro.net/ptsc_hdr.html)		*
  *																			*
- * Copyright 2006 Rob Swindell - http://www.synchro.net/copyright.html		*
+ * Copyright 2008 Rob Swindell - http://www.synchro.net/copyright.html		*
  *																			*
  * This library is free software; you can redistribute it and/or			*
  * modify it under the terms of the GNU Lesser General Public License		*
@@ -1016,7 +1016,7 @@ BOOL DLLCALL wildmatchi(const char *fname, const char *spec, BOOL path)
 /****************************************************************************/
 /* Creates all the necessary directories in the specified path				*/
 /****************************************************************************/
-int DLLCALL mkdirs(const char* path)
+int DLLCALL mkpath(const char* path)
 {
 	const char*	p=path;
 	const char*	tp;
diff --git a/src/xpdev/dirwrap.h b/src/xpdev/dirwrap.h
index dd7664fcd9d9beb9e3e2016b799232ba6c104024..e68de1b3370e87465bc2c79a1f67b8092ff71f26 100644
--- a/src/xpdev/dirwrap.h
+++ b/src/xpdev/dirwrap.h
@@ -8,7 +8,7 @@
  * @format.tab-size 4		(Plain Text/Source Code File Header)			*
  * @format.use-tabs true	(see http://www.synchro.net/ptsc_hdr.html)		*
  *																			*
- * Copyright 2006 Rob Swindell - http://www.synchro.net/copyright.html		*
+ * Copyright 2008 Rob Swindell - http://www.synchro.net/copyright.html		*
  *																			*
  * This library is free software; you can redistribute it and/or			*
  * modify it under the terms of the GNU Lesser General Public License		*
@@ -233,7 +233,7 @@ DLLEXPORT ulong		DLLCALL delfiles(char *inpath, char *spec);
 DLLEXPORT char*		DLLCALL backslash(char* path);
 DLLEXPORT BOOL 		DLLCALL wildmatch(const char *fname, const char *spec, BOOL path);
 DLLEXPORT BOOL 		DLLCALL wildmatchi(const char *fname, const char *spec, BOOL path);
-DLLEXPORT int		DLLCALL	mkdirs(const char* path);
+DLLEXPORT int		DLLCALL	mkpath(const char* path);
 
 
 #if defined(__unix__)