diff options
author | das <das> | 2008-09-02 22:55:32 (GMT) |
---|---|---|
committer | das <das> | 2008-09-02 22:55:32 (GMT) |
commit | a8602e1abc63945cb101c7a028629b37326832ef (patch) | |
tree | 4c3b26aac559c415c0dfd6e40369c8c8fb312691 | |
parent | d39d55ae2457b19db2df1d6a3d23504d28d62815 (diff) | |
download | tcl-a8602e1abc63945cb101c7a028629b37326832ef.zip tcl-a8602e1abc63945cb101c7a028629b37326832ef.tar.gz tcl-a8602e1abc63945cb101c7a028629b37326832ef.tar.bz2 |
unbreak the build with TCL_NO_DEPRECATED defined
-rw-r--r-- | generic/tcl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index d61e9bf..fbe26e5 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -13,7 +13,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.268 2008/09/02 20:56:07 dgp Exp $ + * RCS: @(#) $Id: tcl.h,v 1.269 2008/09/02 22:55:32 das Exp $ */ #ifndef _TCL @@ -233,6 +233,8 @@ extern "C" { #ifndef TCL_NO_DEPRECATED # undef _ANSI_ARGS_ # define _ANSI_ARGS_(x) x +#else +# define _ANSI_ARGS_(x) x #endif /* |