diff options
author | dgp <dgp@users.sourceforge.net> | 2014-09-05 19:04:43 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2014-09-05 19:04:43 (GMT) |
commit | 277e045c81735e0509f6c38c56047faa52b5f246 (patch) | |
tree | 5e1ca9e029f3529eca844779d72a8e1d968b24ac /unix/tclUnixTime.c | |
parent | 3db46bb5c46e8ac5171b91b2e137979406d131b6 (diff) | |
download | tcl-277e045c81735e0509f6c38c56047faa52b5f246.zip tcl-277e045c81735e0509f6c38c56047faa52b5f246.tar.gz tcl-277e045c81735e0509f6c38c56047faa52b5f246.tar.bz2 |
Remove unused macros.
Diffstat (limited to 'unix/tclUnixTime.c')
-rw-r--r-- | unix/tclUnixTime.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/unix/tclUnixTime.c b/unix/tclUnixTime.c index 926e8f4..4452022 100644 --- a/unix/tclUnixTime.c +++ b/unix/tclUnixTime.c @@ -16,9 +16,6 @@ #include <mach/mach_time.h> #endif -#define TM_YEAR_BASE 1900 -#define IsLeapYear(x) (((x)%4 == 0) && ((x)%100 != 0 || (x)%400 == 0)) - /* * TclpGetDate is coded to return a pointer to a 'struct tm'. For thread * safety, this structure must be in thread-specific data. The 'tmKey' |