diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-01 19:44:50 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-01 19:44:50 (GMT) |
commit | 74a34ce6ef75b68ce4d8b5a9d6690f4c16f2028d (patch) | |
tree | 02315d909ed9839df170704dcea0914ea853dbb1 /generic/tclStubInit.c | |
parent | 4b11d5fe7fa29c7e54fa991307ac3a8acd2b7258 (diff) | |
parent | d180ccb164a74d2660ac36e7f56863c9b4fbd6f0 (diff) | |
download | tcl-74a34ce6ef75b68ce4d8b5a9d6690f4c16f2028d.zip tcl-74a34ce6ef75b68ce4d8b5a9d6690f4c16f2028d.tar.gz tcl-74a34ce6ef75b68ce4d8b5a9d6690f4c16f2028d.tar.bz2 |
add TclUnixCopyFile to stub table for Cygwin
Diffstat (limited to 'generic/tclStubInit.c')
-rw-r--r-- | generic/tclStubInit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index e7febe4..87cd4eb 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -55,6 +55,7 @@ static int TclSockMinimumBuffersOld(int sock, int size) #ifdef __WIN32__ # define TclUnixWaitForFile 0 +# define TclUnixCopyFile 0 # define TclpReaddir 0 # define TclpIsAtty 0 #elif defined(__CYGWIN__) @@ -498,7 +499,7 @@ static const TclIntPlatStubs tclIntPlatStubs = { TclpCreatePipe, /* 14 */ TclpCreateProcess, /* 15 */ TclpIsAtty, /* 16 */ - 0, /* 17 */ + TclUnixCopyFile, /* 17 */ TclpMakeFile, /* 18 */ TclpOpenFile, /* 19 */ TclWinAddProcess, /* 20 */ |