summaryrefslogtreecommitdiffstats
path: root/generic/tclDecls.h
diff options
context:
space:
mode:
authorredman <redman>1999-03-10 23:45:50 (GMT)
committerredman <redman>1999-03-10 23:45:50 (GMT)
commit17d56fd5b956aa638c25faaac51a8856ee8f51d7 (patch)
treeb8d799ab1881f1cd3aba82c8aa6cb467b8eabc51 /generic/tclDecls.h
parent2ef4d3492a315e6e57add9c6d15651ce05c8457c (diff)
downloadtcl-17d56fd5b956aa638c25faaac51a8856ee8f51d7.zip
tcl-17d56fd5b956aa638c25faaac51a8856ee8f51d7.tar.gz
tcl-17d56fd5b956aa638c25faaac51a8856ee8f51d7.tar.bz2
fix declarations of empty slots.
Diffstat (limited to 'generic/tclDecls.h')
-rw-r--r--generic/tclDecls.h44
1 files changed, 1 insertions, 43 deletions
diff --git a/generic/tclDecls.h b/generic/tclDecls.h
index db8addd..645ceea 100644
--- a/generic/tclDecls.h
+++ b/generic/tclDecls.h
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclDecls.h,v 1.4 1999/03/10 23:19:09 redman Exp $
+ * RCS: @(#) $Id: tclDecls.h,v 1.5 1999/03/10 23:45:51 redman Exp $
*/
#ifndef _TCLDECLS
@@ -872,18 +872,6 @@ EXTERN void panicVA _ANSI_ARGS_((char * format, va_list argList));
/* 279 */
EXTERN void Tcl_GetVersion _ANSI_ARGS_((int * major, int * minor,
int * patchLevel, Tcl_ReleaseType * type));
-/* 280 */
-EXTERN # Reserved for future use _ANSI_ARGS_((8.0.x vs. 8.1));
-/* 281 */
-EXTERN # Reserved for future use _ANSI_ARGS_((8.0.x vs. 8.1));
-/* 282 */
-EXTERN # Reserved for future use _ANSI_ARGS_((8.0.x vs. 8.1));
-/* 283 */
-EXTERN # Reserved for future use _ANSI_ARGS_((8.0.x vs. 8.1));
-/* 284 */
-EXTERN # Reserved for future use _ANSI_ARGS_((8.0.x vs. 8.1));
-/* 285 */
-EXTERN # Reserved for future use _ANSI_ARGS_((8.0.x vs. 8.1));
typedef struct TclStubHooks {
struct TclPlatStubs *tclPlatStubs;
@@ -1199,12 +1187,6 @@ typedef struct TclStubs {
Tcl_Pid (*tcl_WaitPid) _ANSI_ARGS_((Tcl_Pid pid, int * statPtr, int options)); /* 277 */
void (*panicVA) _ANSI_ARGS_((char * format, va_list argList)); /* 278 */
void (*tcl_GetVersion) _ANSI_ARGS_((int * major, int * minor, int * patchLevel, Tcl_ReleaseType * type)); /* 279 */
- # Reserved for future (*use) _ANSI_ARGS_((8.0.x vs. 8.1)); /* 280 */
- # Reserved for future (*use) _ANSI_ARGS_((8.0.x vs. 8.1)); /* 281 */
- # Reserved for future (*use) _ANSI_ARGS_((8.0.x vs. 8.1)); /* 282 */
- # Reserved for future (*use) _ANSI_ARGS_((8.0.x vs. 8.1)); /* 283 */
- # Reserved for future (*use) _ANSI_ARGS_((8.0.x vs. 8.1)); /* 284 */
- # Reserved for future (*use) _ANSI_ARGS_((8.0.x vs. 8.1)); /* 285 */
} TclStubs;
extern TclStubs *tclStubsPtr;
@@ -2338,30 +2320,6 @@ extern TclStubs *tclStubsPtr;
#define Tcl_GetVersion(major, minor, patchLevel, type) \
(tclStubsPtr->tcl_GetVersion)(major, minor, patchLevel, type) /* 279 */
#endif
-#ifndef use
-#define use(8.1) \
- (tclStubsPtr->use)(8.1) /* 280 */
-#endif
-#ifndef use
-#define use(8.1) \
- (tclStubsPtr->use)(8.1) /* 281 */
-#endif
-#ifndef use
-#define use(8.1) \
- (tclStubsPtr->use)(8.1) /* 282 */
-#endif
-#ifndef use
-#define use(8.1) \
- (tclStubsPtr->use)(8.1) /* 283 */
-#endif
-#ifndef use
-#define use(8.1) \
- (tclStubsPtr->use)(8.1) /* 284 */
-#endif
-#ifndef use
-#define use(8.1) \
- (tclStubsPtr->use)(8.1) /* 285 */
-#endif
#endif /* defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS) */