diff options
author | dgp <dgp@users.sourceforge.net> | 2004-11-12 22:52:27 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-11-12 22:52:27 (GMT) |
commit | cbb4ddeec15b231fc8a10b7f0472976006665f94 (patch) | |
tree | 7aec0a77c91fb6efd4c9bedc5495c0023128341d | |
parent | 5f215c8bc636cbd4c0a97b545f3efa71ed8cb94c (diff) | |
download | tcl-cbb4ddeec15b231fc8a10b7f0472976006665f94.zip tcl-cbb4ddeec15b231fc8a10b7f0472976006665f94.tar.gz tcl-cbb4ddeec15b231fc8a10b7f0472976006665f94.tar.bz2 |
* unix/tclAppInit.c: Removed tclConfig.h #include, now that tcl.h
takes care of it for us.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | unix/tclAppInit.c | 9 |
2 files changed, 4 insertions, 8 deletions
@@ -1,5 +1,8 @@ 2004-11-12 Don Porter <dgp@users.sourceforge.net> + * unix/tclAppInit.c: Removed tclConfig.h #include, now that tcl.h + takes care of it for us. + * generic/tclInt.h: Moved verification of ptrdiff_t typedef from * generic/tclExecute.c: multiple .c files into one common header where * generic/tclVar.c: it is verifiably after tclConfig.h inclusion. diff --git a/unix/tclAppInit.c b/unix/tclAppInit.c index 1202a34..9f2ab39 100644 --- a/unix/tclAppInit.c +++ b/unix/tclAppInit.c @@ -11,16 +11,9 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclAppInit.c,v 1.14 2004/11/12 18:07:55 rmax Exp $ + * RCS: @(#) $Id: tclAppInit.c,v 1.15 2004/11/12 22:52:30 dgp Exp $ */ -/* - * The core stores all its #defs in config.h for clarity... - */ -#ifdef HAVE_CONFIG_H -#include "tclConfig.h" -#endif - #include "tcl.h" #ifdef TCL_TEST |