diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-06 23:33:46 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-06 23:33:46 (GMT) |
commit | 51a4b5f8807bc1e0df2e06087292df90c7777f50 (patch) | |
tree | 3760c724e2815dde7d8d1abc5896f2f292ce2906 /generic/tclInt.decls | |
parent | 37ce8d233ce4e72301a408cd04e074dfd14d6534 (diff) | |
download | tcl-51a4b5f8807bc1e0df2e06087292df90c7777f50.zip tcl-51a4b5f8807bc1e0df2e06087292df90c7777f50.tar.gz tcl-51a4b5f8807bc1e0df2e06087292df90c7777f50.tar.bz2 |
tclpGetPid signature change (stub entry only, not for macro),
for win64 compatibility with future cygwin64
correctly use win32 as default when cross-compiling under cygwin
Diffstat (limited to 'generic/tclInt.decls')
-rwxr-xr-x[-rw-r--r--] | generic/tclInt.decls | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index b7c7ee4..e438588 100644..100755 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -856,7 +856,7 @@ declare 7 win { const char *optval, int optlen) } declare 8 win { - unsigned long TclpGetPid(Tcl_Pid pid) + int TclpGetPid(Tcl_Pid pid) } declare 9 win { int TclWinGetPlatformId(void) @@ -980,7 +980,7 @@ declare 7 unix { } # On non-cygwin, this is actually a reference to TclUnixWaitForFile declare 8 unix { - unsigned long TclpGetPid(Tcl_Pid pid) + int TclpGetPid(Tcl_Pid pid) } # Added in 8.1: |