summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixTime.c
diff options
context:
space:
mode:
authorsebres <sebres@users.sourceforge.net>2017-05-11 18:53:21 (GMT)
committersebres <sebres@users.sourceforge.net>2017-05-11 18:53:21 (GMT)
commitc7ee05b881b42a4e4e39bbe519714eea4af7beba (patch)
tree7871ca975e33745ffa98d6cc3746e915a61fce21 /unix/tclUnixTime.c
parentdb083499bfff8aee794512e3da2f0ad2f201f6b0 (diff)
parent53c066e2314b0166a9fe30fd1f0026bb48f0d1f3 (diff)
downloadtcl-c7ee05b881b42a4e4e39bbe519714eea4af7beba.zip
tcl-c7ee05b881b42a4e4e39bbe519714eea4af7beba.tar.gz
tcl-c7ee05b881b42a4e4e39bbe519714eea4af7beba.tar.bz2
merge trunk (to sebres-trunk-timerate)
Diffstat (limited to 'unix/tclUnixTime.c')
-rw-r--r--unix/tclUnixTime.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/unix/tclUnixTime.c b/unix/tclUnixTime.c
index 8ec6e8a..d95d39b 100644
--- a/unix/tclUnixTime.c
+++ b/unix/tclUnixTime.c
@@ -22,6 +22,7 @@
* variable is the key to this buffer.
*/
+#ifndef TCL_NO_DEPRECATED
static Tcl_ThreadDataKey tmKey;
typedef struct {
struct tm gmtime_buf;
@@ -45,6 +46,8 @@ static char *lastTZ = NULL; /* Holds the last setting of the TZ
static void SetTZIfNecessary(void);
static void CleanupMemory(ClientData clientData);
+#endif /* TCL_NO_DEPRECATED */
+
static void NativeScaleTime(Tcl_Time *timebuf,
ClientData clientData);
static void NativeGetTime(Tcl_Time *timebuf,
@@ -334,6 +337,7 @@ Tcl_GetTime(
*----------------------------------------------------------------------
*/
+#ifndef TCL_NO_DEPRECATED
struct tm *
TclpGetDate(
const time_t *time,
@@ -423,6 +427,7 @@ TclpLocaltime(
return &tsdPtr->localtime_buf;
}
+#endif /* TCL_NO_DEPRECATED */
/*
*----------------------------------------------------------------------
@@ -557,6 +562,7 @@ NativeGetTime(
*----------------------------------------------------------------------
*/
+#ifndef TCL_NO_DEPRECATED
static void
SetTZIfNecessary(void)
{
@@ -602,6 +608,7 @@ CleanupMemory(
{
ckfree(lastTZ);
}
+#endif /* TCL_NO_DEPRECATED */
/*
* Local Variables: