summaryrefslogtreecommitdiffstats
path: root/generic/tcl.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-12-18 13:47:08 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-12-18 13:47:08 (GMT)
commit2acbdb04938db272c3e0bfcedbd3d78d788a9833 (patch)
treef9a69bc7362f766b14095d86dc2f8b74f5b4f7d3 /generic/tcl.h
parente00ad288cc9b6a7e9f95f74fd040d9ea8d21fe55 (diff)
downloadtcl-2acbdb04938db272c3e0bfcedbd3d78d788a9833.zip
tcl-2acbdb04938db272c3e0bfcedbd3d78d788a9833.tar.gz
tcl-2acbdb04938db272c3e0bfcedbd3d78d788a9833.tar.bz2
Remove all VA functions Tcl_AppendResultVA, Tcl_AppendStringsToObjVA, Tcl_SetErrorCodeVA, Tcl_PanicVA, and dependancy of tcl.h on <stdarg.h>. TIP required.
Diffstat (limited to 'generic/tcl.h')
-rw-r--r--generic/tcl.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index 09191df..98736ea 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -123,18 +123,6 @@ extern "C" {
#include <stdio.h>
-/*
- *----------------------------------------------------------------------------
- * Support for functions with a variable number of arguments.
- *
- * The following TCL_VARARGS* macros are to support old extensions
- * written for older versions of Tcl where the macros permitted
- * support for the varargs.h system as well as stdarg.h .
- *
- * New code should just directly be written to use stdarg.h conventions.
- */
-
-#include <stdarg.h>
#if defined(__GNUC__) && (__GNUC__ > 2)
# define TCL_FORMAT_PRINTF(a,b) __attribute__ ((__format__ (__printf__, a, b)))
#else