summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--generic/tclInt.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h
index cfa587b..2d76792 100644
--- a/generic/tclInt.h
+++ b/generic/tclInt.h
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclInt.h,v 1.33 1999/06/15 01:16:23 hershey Exp $
+ * RCS: @(#) $Id: tclInt.h,v 1.34 1999/06/26 19:35:58 redman Exp $
*/
#ifndef _TCLINT
@@ -701,10 +701,10 @@ typedef struct CallFrame {
typedef VOID **TclHandle;
-TclHandle TclHandleCreate _ANSI_ARGS_((VOID *ptr));
-void TclHandleFree _ANSI_ARGS_((TclHandle handle));
-TclHandle TclHandlePreserve _ANSI_ARGS_((TclHandle handle));
-void TclHandleRelease _ANSI_ARGS_((TclHandle handle));
+EXTERN TclHandle TclHandleCreate _ANSI_ARGS_((VOID *ptr));
+EXTERN void TclHandleFree _ANSI_ARGS_((TclHandle handle));
+EXTERN TclHandle TclHandlePreserve _ANSI_ARGS_((TclHandle handle));
+EXTERN void TclHandleRelease _ANSI_ARGS_((TclHandle handle));
/*
*----------------------------------------------------------------