diff options
Diffstat (limited to 'compat')
-rw-r--r-- | compat/strftime.c | 6 | ||||
-rw-r--r-- | compat/strtod.c | 3 |
2 files changed, 4 insertions, 5 deletions
diff --git a/compat/strftime.c b/compat/strftime.c index 2203536..a2199a5 100644 --- a/compat/strftime.c +++ b/compat/strftime.c @@ -8,7 +8,7 @@ * source. See the copyright notice below for details on redistribution * restrictions. The "license.terms" file does not apply to this file. * - * RCS: @(#) $Id: strftime.c,v 1.7 2000/01/15 01:50:43 hobbs Exp $ + * RCS: @(#) $Id: strftime.c,v 1.8 2001/11/23 01:26:30 das Exp $ */ /* @@ -45,7 +45,7 @@ */ #if defined(LIBC_SCCS) -static char *rcsid = "$Id: strftime.c,v 1.7 2000/01/15 01:50:43 hobbs Exp $"; +static char *rcsid = "$Id: strftime.c,v 1.8 2001/11/23 01:26:30 das Exp $"; #endif /* LIBC_SCCS */ #include <time.h> @@ -324,7 +324,6 @@ _fmt(format, t) if (!_conv((t->tm_year + TM_YEAR_BASE), 4, '0')) return(0); continue; -#ifndef MAC_TCL case 'Z': { char *name = TclpGetTZName(t->tm_isdst); if (name && !_add(name)) { @@ -332,7 +331,6 @@ _fmt(format, t) } continue; } -#endif case '%': /* * X311J/88-090 (4.12.3.5): if conversion char is diff --git a/compat/strtod.c b/compat/strtod.c index 22d8d92..ad5b72e 100644 --- a/compat/strtod.c +++ b/compat/strtod.c @@ -9,10 +9,11 @@ * 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.3 2001/09/04 23:16:18 dgp Exp $ + * RCS: @(#) $Id: strtod.c,v 1.4 2001/11/23 01:26:34 das Exp $ */ #include "tcl.h" +#include "tclPort.h" #ifdef NO_STDLIB_H # include "../compat/stdlib.h" #else |