summaryrefslogtreecommitdiffstats
path: root/mac/tkMacPort.h
diff options
context:
space:
mode:
Diffstat (limited to 'mac/tkMacPort.h')
-rw-r--r--mac/tkMacPort.h17
1 files changed, 13 insertions, 4 deletions
diff --git a/mac/tkMacPort.h b/mac/tkMacPort.h
index 027fa06..91b1b35 100644
--- a/mac/tkMacPort.h
+++ b/mac/tkMacPort.h
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tkMacPort.h,v 1.10 2001/09/21 21:22:09 hobbs Exp $
+ * RCS: @(#) $Id: tkMacPort.h,v 1.11 2001/11/23 02:06:14 das Exp $
*/
#ifndef _TKMACPORT
@@ -71,14 +71,14 @@ extern int errno;
*/
#ifndef panic /* In a stubs-aware setting, this could confuse the #define */
-extern void panic _ANSI_ARGS_(TCL_VARARGS(char *, string));
+EXTERN void panic _ANSI_ARGS_(TCL_VARARGS(char *, string));
#endif
#ifndef strcasecmp
-extern int strcasecmp _ANSI_ARGS_((CONST char *s1,
+EXTERN int strcasecmp _ANSI_ARGS_((CONST char *s1,
CONST char *s2));
#endif
#ifndef strncasecmp
-extern int strncasecmp _ANSI_ARGS_((CONST char *s1,
+EXTERN int strncasecmp _ANSI_ARGS_((CONST char *s1,
CONST char *s2, size_t n));
#endif
/*
@@ -150,4 +150,13 @@ extern int strncasecmp _ANSI_ARGS_((CONST char *s1,
#define MENU_TEXT_PIXEL 51
#define APPEARANCE_PIXEL 52
+/*
+ * The following declaration is used to get access to a private Tcl interface
+ * that is needed for portability reasons.
+ */
+
+#ifndef _TCLINT
+#include <tclInt.h>
+#endif
+
#endif /* _TKMACPORT */