We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b78647a commit b1980f6Copy full SHA for b1980f6
src/pl/tcl/pltcl.c
@@ -18,6 +18,11 @@
18
#define CONST84
19
#endif
20
21
+/* ... and for Tcl 8.6. */
22
+#ifndef CONST86
23
+#define CONST86
24
+#endif
25
+
26
#include "access/htup_details.h"
27
#include "access/xact.h"
28
#include "catalog/pg_proc.h"
@@ -259,7 +264,7 @@ pltcl_FinalizeNotifier(ClientData clientData)
259
264
}
260
265
261
266
static void
262
-pltcl_SetTimer(Tcl_Time *timePtr)
267
+pltcl_SetTimer(CONST86 Tcl_Time *timePtr)
263
268
{
269
270
@@ -285,7 +290,7 @@ pltcl_ServiceModeHook(int mode)
285
290
286
291
287
292
static int
288
-pltcl_WaitForEvent(Tcl_Time *timePtr)
293
+pltcl_WaitForEvent(CONST86 Tcl_Time *timePtr)
289
294
295
return 0;
296
0 commit comments