diff options
author | dgp <dgp@users.sourceforge.net> | 2002-02-25 14:26:12 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-02-25 14:26:12 (GMT) |
commit | 730ef3578f5ee4acee78ad32b67c0dd4e963d911 (patch) | |
tree | 98d0584ce9e9f05cc512c59c694b65aeafa85a67 /compat | |
parent | a09bbfbf2d3d153129db0dc6845dfb64b3590c08 (diff) | |
download | tcl-730ef3578f5ee4acee78ad32b67c0dd4e963d911.zip tcl-730ef3578f5ee4acee78ad32b67c0dd4e963d911.tar.gz tcl-730ef3578f5ee4acee78ad32b67c0dd4e963d911.tar.bz2 |
simplified the #include lines
Diffstat (limited to 'compat')
-rw-r--r-- | compat/strtod.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/compat/strtod.c b/compat/strtod.c index a5f350f..063e175 100644 --- a/compat/strtod.c +++ b/compat/strtod.c @@ -9,18 +9,12 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: strtod.c,v 1.5 2002/02/25 10:36:32 dkf Exp $ + * RCS: @(#) $Id: strtod.c,v 1.6 2002/02/25 14:26:12 dgp Exp $ */ -#include "tcl.h" +#include "tclInt.h" #include "tclPort.h" -#ifdef NO_STDLIB_H -# include "../compat/stdlib.h" -#else -# include <stdlib.h> -#endif #include <ctype.h> -#include "tclPort.h" #ifndef TRUE #define TRUE 1 |