diff options
author | stanton <stanton@noemail.net> | 1999-03-10 07:04:38 (GMT) |
---|---|---|
committer | stanton <stanton@noemail.net> | 1999-03-10 07:04:38 (GMT) |
commit | ec2ba5f6728b8b5f1a252e25b4433d29c4319403 (patch) | |
tree | b83515b886272ee3c61631f31cfe3fad937dc0a7 /generic/tkCmds.c | |
parent | f7d299b766bb808ca70de46712e13469c076fcdd (diff) | |
download | tk-ec2ba5f6728b8b5f1a252e25b4433d29c4319403.zip tk-ec2ba5f6728b8b5f1a252e25b4433d29c4319403.tar.gz tk-ec2ba5f6728b8b5f1a252e25b4433d29c4319403.tar.bz2 |
integrated stubs into 8.0 main branch
FossilOrigin-Name: 4c74dd207943932e6d9a6d06a3ec11b8e4459199
Diffstat (limited to 'generic/tkCmds.c')
-rw-r--r-- | generic/tkCmds.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/generic/tkCmds.c b/generic/tkCmds.c index e16b490..19d05ca 100644 --- a/generic/tkCmds.c +++ b/generic/tkCmds.c @@ -11,13 +11,21 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkCmds.c,v 1.4 1998/09/30 19:01:19 rjohnson Exp $ + * RCS: @(#) $Id: tkCmds.c,v 1.5 1999/03/10 07:04:39 stanton Exp $ */ #include "tkPort.h" #include "tkInt.h" #include <errno.h> +#if defined(__WIN32__) +#include "tkWinInt.h" +#elif defined(MAC_TCL) +#include "tkMacInt.h" +#else +#include "tkUnixInt.h" +#endif + /* * Forward declarations for procedures defined later in this file: */ |