blob: a3c19d60d048fef949e10a5c278b4c33699e8592 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
$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;
|