summaryrefslogtreecommitdiffstats
path: root/generic/tclPlatStubs.c
diff options
context:
space:
mode:
Diffstat (limited to 'generic/tclPlatStubs.c')
-rw-r--r--generic/tclPlatStubs.c35
1 files changed, 1 insertions, 34 deletions
diff --git a/generic/tclPlatStubs.c b/generic/tclPlatStubs.c
index 307501c..d7a8971 100644
--- a/generic/tclPlatStubs.c
+++ b/generic/tclPlatStubs.c
@@ -7,7 +7,7 @@
* Copyright (c) 1998-1999 by Scriptics Corporation.
* All rights reserved.
*
- * RCS: @(#) $Id: tclPlatStubs.c,v 1.2.2.1 1999/03/08 20:14:11 stanton Exp $
+ * RCS: @(#) $Id: tclPlatStubs.c,v 1.2.2.2 1999/03/10 06:41:52 stanton Exp $
*/
#include "tcl.h"
@@ -24,39 +24,6 @@
* Exported stub functions:
*/
-#if !defined(__WIN32__) && !defined(MAC_TCL)
-/* Slot 0 */
-void
-Tcl_CreateFileHandler(fd, mask, proc, clientData)
- int fd;
- int mask;
- Tcl_FileProc * proc;
- ClientData clientData;
-{
- (tclPlatStubsPtr->tcl_CreateFileHandler)(fd, mask, proc, clientData);
-}
-
-/* Slot 1 */
-void
-Tcl_DeleteFileHandler(fd)
- int fd;
-{
- (tclPlatStubsPtr->tcl_DeleteFileHandler)(fd);
-}
-
-/* Slot 2 */
-int
-Tcl_GetOpenFile(interp, str, write, checkUsage, filePtr)
- Tcl_Interp * interp;
- char * str;
- int write;
- int checkUsage;
- ClientData * filePtr;
-{
- return (tclPlatStubsPtr->tcl_GetOpenFile)(interp, str, write, checkUsage, filePtr);
-}
-
-#endif /* UNIX */
#ifdef MAC_TCL
/* Slot 0 */
void