diff options
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 2d762e5..5d434bd 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -634,18 +634,15 @@ Tcl_CreateInterp(void) */ if (sizeof(Tcl_CallFrame) < sizeof(CallFrame)) { - /*NOTREACHED*/ Tcl_Panic("Tcl_CallFrame must not be smaller than CallFrame"); } #if defined(_WIN32) && !defined(_WIN64) if (sizeof(time_t) != 8) { - /*NOTREACHED*/ Tcl_Panic("<time.h> is not compatible with VS2005+"); } if ((offsetof(Tcl_StatBuf,st_atime) != 32) || (offsetof(Tcl_StatBuf,st_ctime) != 48)) { - /*NOTREACHED*/ Tcl_Panic("<sys/stat.h> is not compatible with VS2005+"); } #endif @@ -6606,7 +6603,7 @@ Tcl_AppendObjToErrorInfo( * *---------------------------------------------------------------------- */ - /* ARGSUSED */ + int Tcl_VarEval( Tcl_Interp *interp, |