diff options
author | dgp <dgp@users.sourceforge.net> | 2001-08-30 15:41:29 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-08-30 15:41:29 (GMT) |
commit | eea085949939ceed9a3dd3c4b472d55d2a19f654 (patch) | |
tree | d5faec112d4820820fe0ad287fab5bffc514950c /generic | |
parent | edf6059e1c03b2bdef9a4f6aa85905ce19e9c5d9 (diff) | |
download | tcl-eea085949939ceed9a3dd3c4b472d55d2a19f654.zip tcl-eea085949939ceed9a3dd3c4b472d55d2a19f654.tar.gz tcl-eea085949939ceed9a3dd3c4b472d55d2a19f654.tar.bz2 |
* Silence warning from Sun compiler. [Bug 454374]
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tcl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index ba7d9c5..91e5627 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tcl.h,v 1.96 2001/08/23 17:37:07 vincentdarley Exp $ + * RCS: @(#) $Id: tcl.h,v 1.97 2001/08/30 15:41:29 dgp Exp $ */ #ifndef _TCL @@ -605,7 +605,7 @@ typedef int (Tcl_MathProc) _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, Tcl_Value *args, Tcl_Value *resultPtr)); typedef void (Tcl_NamespaceDeleteProc) _ANSI_ARGS_((ClientData clientData)); typedef int (Tcl_ObjCmdProc) _ANSI_ARGS_((ClientData clientData, - Tcl_Interp *interp, int objc, struct Tcl_Obj *CONST objv[])); + Tcl_Interp *interp, int objc, struct Tcl_Obj * CONST * objv)); typedef int (Tcl_PackageInitProc) _ANSI_ARGS_((Tcl_Interp *interp)); typedef void (Tcl_PanicProc) _ANSI_ARGS_(TCL_VARARGS(CONST char *, format)); typedef void (Tcl_TcpAcceptProc) _ANSI_ARGS_((ClientData callbackData, |