Changeset 2137
- Timestamp:
- 05/02/07 23:50:22 (2 years ago)
- Files:
-
- trunk/tango/util/time/Utc.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/util/time/Utc.d
r2133 r2137 206 206 { 207 207 tm t = void; 208 209 gmtime_r ( 86400, &t);208 time_t time = 86400; 209 gmtime_r (&time, &t); 210 210 int i = mktime (&t); 211 211 return cast(Time) (Time.TicksPerSecond * (i - 86400));












