diff options
author | stanton <stanton> | 1999-03-10 05:50:24 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-03-10 05:50:24 (GMT) |
commit | 55a16b674b012b4b946869b89d0a389c419dc564 (patch) | |
tree | 9669c8e81b617040fe157e06fa1fef038cd80192 /unix | |
parent | 78fd70c5b692ba5346a7c00addcc18de7a1bb7cd (diff) | |
download | tcl-dev_stubs_branch.zip tcl-dev_stubs_branch.tar.gz tcl-dev_stubs_branch.tar.bz2 |
* tools/genStubs.tcl: Reorganized code to support mixed generic
dev_stubs_branch
and platform specific tables.
* generic/tclInt.decls: Removed TclCompile*Cmd routines from the
table.
* generic/tcl.decls: Moved old Unix fd handler routines into
generic table and modified stubs ordering to match the plus patch.
* win/tclWinChan.c (FileSeekProc): Fixed bug where errors during
seeking were not getting propagated.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclUnixPort.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h index 778b73a..42b4b12 100644 --- a/unix/tclUnixPort.h +++ b/unix/tclUnixPort.h @@ -19,7 +19,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixPort.h,v 1.8.4.2 1999/03/05 20:18:09 stanton Exp $ + * RCS: @(#) $Id: tclUnixPort.h,v 1.8.4.3 1999/03/10 05:50:29 stanton Exp $ */ #ifndef _TCLUNIXPORT @@ -457,6 +457,7 @@ extern double strtod(); #define TclpFinalize() +#include "tclPlatDecls.h" #include "tclIntPlatDecls.h" #endif /* _TCLUNIXPORT */ |