summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.h
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r--generic/tclInt.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index 50280cc..1162638 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -1940,17 +1940,6 @@ typedef struct Interp {
*((iPtr)->asyncReadyPtr)
/*
- * General list of interpreters. Doubly linked for easier removal of items
- * deep in the list.
- */
-
-typedef struct InterpList {
- Interp *interpPtr;
- struct InterpList *prevPtr;
- struct InterpList *nextPtr;
-} InterpList;
-
-/*
* Macros for splicing into and out of doubly linked lists. They assume
* existence of struct items 'prevPtr' and 'nextPtr'.
*