a9336f5ec3
Comment indicates it was here earlier, now apparently scheduled to be replaced by TclpObjCreateDirectory, but this will have to do as a workaround for now.
19 lines
472 B
Text
19 lines
472 B
Text
$NetBSD: patch-ah,v 1.1 2004/05/13 12:57:42 he Exp $
|
|
|
|
--- tclUnixFCmd.c.orig 2003-10-03 19:45:37.000000000 +0200
|
|
+++ tclUnixFCmd.c
|
|
@@ -561,6 +561,14 @@ TclpDeleteFile(path)
|
|
*---------------------------------------------------------------------------
|
|
*/
|
|
|
|
+/* Reintroduced here for the benefit of scotty */
|
|
+int
|
|
+TclpCreateDirectory(path)
|
|
+ CONST char *path;
|
|
+{
|
|
+ return DoCreateDirectory(path);
|
|
+}
|
|
+
|
|
int
|
|
TclpObjCreateDirectory(pathPtr)
|
|
Tcl_Obj *pathPtr;
|