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 | 0e427eadea196a21f96f1b466196056d9430b5a9 (patch) | |
tree | dab7b43a5ca1853752d51320bb1644e477a1c522 /generic | |
parent | 884ba1c7869af6d659c880a2dc8a9d7a76f034bd (diff) | |
parent | 6600288ed7106cca316a8c7c8bcfabecf5cb7d8e (diff) | |
download | tcl-0e427eadea196a21f96f1b466196056d9430b5a9.zip tcl-0e427eadea196a21f96f1b466196056d9430b5a9.tar.gz tcl-0e427eadea196a21f96f1b466196056d9430b5a9.tar.bz2 |
Remove Tclp(Local|Gm)time_unix forwarders, the same can be done directly
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclIntPlatDecls.h | 2 | ||||
-rw-r--r-- | generic/tclStubInit.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/generic/tclIntPlatDecls.h b/generic/tclIntPlatDecls.h index 10ae67b..0f1c0d1 100644 --- a/generic/tclIntPlatDecls.h +++ b/generic/tclIntPlatDecls.h @@ -426,5 +426,7 @@ extern const TclIntPlatStubs *tclIntPlatStubsPtr; #undef TCL_STORAGE_CLASS #define TCL_STORAGE_CLASS DLLIMPORT +#undef TclpLocaltime_unix +#undef TclpGmtime_unix #endif /* _TCLINTPLATDECLS */ diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index eb9a9be..054ece5 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -39,6 +39,8 @@ #undef Tcl_CreateHashEntry #undef Tcl_Panic #undef Tcl_FindExecutable +#define TclpLocaltime_unix TclpLocaltime +#define TclpGmtime_unix TclpGmtime /* * WARNING: The contents of this file is automatically generated by the |