Changeset 767
- Timestamp:
- 01/20/06 15:47:08 (3 years ago)
- Files:
-
- trunk/mango/sys/Epoch.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/mango/sys/Epoch.d
r609 r767 482 482 version (Posix) 483 483 { 484 // these are exposed via an external library485 extern staticint timezone;486 extern staticint daylight;484 // these are exposed via std.c.time 485 //extern (C) int timezone; 486 //extern (C) int daylight; 487 487 488 488 private static Object lock; … … 543 543 { 544 544 // this may need to be negated? 545 return timezone / 60;545 return -timezone / 60; 546 546 } 547 547 }
