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 | a01324b87773322006055cac9ff0da9bdae34d4b (patch) | |
tree | 02315d909ed9839df170704dcea0914ea853dbb1 /generic/tclStubInit.c | |
parent | 78b82674195177bbfa1c3139e86cf6c7ddf3a9cb (diff) | |
parent | 0be279d05406008feb6cef4e6de1a3c890078d44 (diff) | |
download | tcl-a01324b87773322006055cac9ff0da9bdae34d4b.zip tcl-a01324b87773322006055cac9ff0da9bdae34d4b.tar.gz tcl-a01324b87773322006055cac9ff0da9bdae34d4b.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 */ |