diff options
author | dgp <dgp@users.sourceforge.net> | 2008-12-15 16:17:18 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-12-15 16:17:18 (GMT) |
commit | b4a8fbc74c92487a934fefac4dd1714f5e3a7c43 (patch) | |
tree | 1a0bd6ea21b759eeccc91bff26f0d16b003e034e /generic | |
parent | 8a0ee3044dcf44cad09d73c42001ad793d9adf42 (diff) | |
download | tk-b4a8fbc74c92487a934fefac4dd1714f5e3a7c43.zip tk-b4a8fbc74c92487a934fefac4dd1714f5e3a7c43.tar.gz tk-b4a8fbc74c92487a934fefac4dd1714f5e3a7c43.tar.bz2 |
TIP #338 IMPLEMENTATION
* doc/Tk_Main.c: Removed the last two '#include "tclInt.h"'.
* generic/tkMain.c: Tk is now limited to Tcl's public interface.
* macosx/tkMacOSXInit.c:
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkMain.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tkMain.c b/generic/tkMain.c index b008f41..5dd5f40 100644 --- a/generic/tkMain.c +++ b/generic/tkMain.c @@ -13,13 +13,12 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMain.c,v 1.31 2008/11/08 18:44:40 dkf Exp $ + * RCS: @(#) $Id: tkMain.c,v 1.32 2008/12/15 16:17:18 dgp Exp $ */ #include <ctype.h> #include <stdio.h> #include <string.h> -#include "tclInt.h" #include "tkInt.h" #ifdef NO_STDLIB_H # include "../compat/stdlib.h" |