diff options
Diffstat (limited to 'generic/tclStubInit.c')
| -rw-r--r-- | generic/tclStubInit.c | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 0bede56..88ada19 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -65,6 +65,7 @@ static unsigned short TclWinNToHS(unsigned short ns) {  #ifdef __WIN32__  #   define TclUnixWaitForFile 0  #   define TclUnixCopyFile 0 +#   define TclUnixOpenTemporaryFile 0  #   define TclpReaddir 0  #   define TclpIsAtty 0  #elif defined(__CYGWIN__) @@ -465,7 +466,7 @@ static const TclIntPlatStubs tclIntPlatStubs = {      0, /* 17 */      0, /* 18 */      0, /* 19 */ -    TclUnixOpenTemporaryFile, /* 20 */ +    0, /* 20 */      0, /* 21 */      0, /* 22 */      0, /* 23 */ @@ -475,6 +476,7 @@ static const TclIntPlatStubs tclIntPlatStubs = {      0, /* 27 */      0, /* 28 */      TclWinCPUID, /* 29 */ +    TclUnixOpenTemporaryFile, /* 30 */  #endif /* UNIX */  #if defined(__WIN32__) || defined(__CYGWIN__) /* WIN */      TclWinConvertError, /* 0 */ @@ -507,6 +509,7 @@ static const TclIntPlatStubs tclIntPlatStubs = {      TclWinFlushDirtyChannels, /* 27 */      TclWinResetInterfaces, /* 28 */      TclWinCPUID, /* 29 */ +    TclUnixOpenTemporaryFile, /* 30 */  #endif /* WIN */  #ifdef MAC_OSX_TCL /* MACOSX */      TclGetAndDetachPids, /* 0 */ @@ -529,7 +532,7 @@ static const TclIntPlatStubs tclIntPlatStubs = {      TclMacOSXCopyFileAttributes, /* 17 */      TclMacOSXMatchType, /* 18 */      TclMacOSXNotifierAddRunLoopMode, /* 19 */ -    TclUnixOpenTemporaryFile, /* 20 */ +    0, /* 20 */      0, /* 21 */      0, /* 22 */      0, /* 23 */ @@ -539,6 +542,7 @@ static const TclIntPlatStubs tclIntPlatStubs = {      0, /* 27 */      0, /* 28 */      TclWinCPUID, /* 29 */ +    TclUnixOpenTemporaryFile, /* 30 */  #endif /* MACOSX */  }; | 
