diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-03-25 14:05:02 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-03-25 14:05:02 (GMT) |
commit | fe3de7265bb0cf9d68a48a345366f895362b6083 (patch) | |
tree | dab7b43a5ca1853752d51320bb1644e477a1c522 /unix | |
parent | aea17338146fe2dd8a42a5dcd4f3fa8af71f0c1e (diff) | |
parent | 273e2bf1be13dfe8723534fd320115ae347fb1da (diff) | |
download | tcl-fe3de7265bb0cf9d68a48a345366f895362b6083.zip tcl-fe3de7265bb0cf9d68a48a345366f895362b6083.tar.gz tcl-fe3de7265bb0cf9d68a48a345366f895362b6083.tar.bz2 |
Remove Tclp(Local|Gm)time_unix forwarders, the same can be done directly
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclUnixTime.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/unix/tclUnixTime.c b/unix/tclUnixTime.c index 7739079..02a90a5 100644 --- a/unix/tclUnixTime.c +++ b/unix/tclUnixTime.c @@ -431,17 +431,6 @@ TclpGmtime( return &tsdPtr->gmtime_buf; } - -/* - * Forwarder for obsolete item in Stubs - */ - -struct tm * -TclpGmtime_unix( - const time_t *timePtr) -{ - return TclpGmtime(timePtr); -} /* *---------------------------------------------------------------------- @@ -482,15 +471,6 @@ TclpLocaltime( return &tsdPtr->localtime_buf; } -/* - * Forwarder for obsolete item in Stubs - */ -struct tm* -TclpLocaltime_unix( - const time_t *timePtr) -{ - return TclpLocaltime(timePtr); -} /* *---------------------------------------------------------------------- |