* Windows localtime & gmtime functions don't like negative times.
process.
** PROBE-FILE now simplifies pathnames correctly.
** DIRECTORY now works correctly with :WILD-INFERIORS.
+ ** (DECODE-UNIVERSAL-TIME 0) works.
changes in sbcl-0.9.18 (1.0.beta?) relative to sbcl-0.9.17:
* enhancement: SB-POSIX now supports cfsetispeed(3), cfsetospeed(3),
/* No _r versions on Windows, but the API documentation also
* doesn't warn them about being non-reentrant... So here's
* hoping they actually are -- once Windows grows threads
- * this better be checked, though. */
+ * this better be checked, though.
+ *
+ * The Windows versions also don't support times before the
+ * epoch, so we kludge it. */
+ if (when < 0)
+ when = -when;
ltm = *localtime(&when);
gtm = *gmtime(&when);
#else
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.9.18.9"
+"0.9.18.10"