summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-11-16 12:02:11 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-11-16 12:02:11 (GMT)
commit11731e63db46dac617e84a0273750a7a6d434ea2 (patch)
tree5105b6b8d9f9e3c3ce5e6084e8d8644f4818067c /unix
parent39fcae2844fcf9588b9fc5825623b50bf941b62a (diff)
parenta5e261f15f06a283ad8a648611f1a9eb5b8127e1 (diff)
downloadtcl-11731e63db46dac617e84a0273750a7a6d434ea2.zip
tcl-11731e63db46dac617e84a0273750a7a6d434ea2.tar.gz
tcl-11731e63db46dac617e84a0273750a7a6d434ea2.tar.bz2
eliminate CONST/CONST84/CONST86
Diffstat (limited to 'unix')
-rw-r--r--unix/tclXtNotify.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/unix/tclXtNotify.c b/unix/tclXtNotify.c
index 50eb4a2..e289e8c 100644
--- a/unix/tclXtNotify.c
+++ b/unix/tclXtNotify.c
@@ -16,9 +16,6 @@
#include <X11/Intrinsic.h>
#include "tclInt.h"
-#ifndef CONST86
-# define CONST86
-#endif
/*
* This structure is used to keep track of the notifier info for a a
* registered file.
@@ -87,8 +84,8 @@ static void TimerProc(ClientData clientData, XtIntervalId *id);
static void CreateFileHandler(int fd, int mask,
Tcl_FileProc *proc, ClientData clientData);
static void DeleteFileHandler(int fd);
-static void SetTimer(CONST86 Tcl_Time * timePtr);
-static int WaitForEvent(CONST86 Tcl_Time * timePtr);
+static void SetTimer(const Tcl_Time * timePtr);
+static int WaitForEvent(const Tcl_Time * timePtr);
/*
* Functions defined in this file for use by users of the Xt Notifier:
@@ -265,7 +262,7 @@ NotifierExitHandler(
static void
SetTimer(
- CONST86 Tcl_Time *timePtr) /* Timeout value, may be NULL. */
+ const Tcl_Time *timePtr) /* Timeout value, may be NULL. */
{
long timeout;
@@ -629,7 +626,7 @@ FileHandlerEventProc(
static int
WaitForEvent(
- CONST86 Tcl_Time *timePtr) /* Maximum block time, or NULL. */
+ const Tcl_Time *timePtr) /* Maximum block time, or NULL. */
{
int timeout;