History log of /openbsd-src/lib/libc/time/wcsftime.c (Results 1 – 7 of 7)
Revision Date Author Comments
# bb5f5481 12-May-2019 schwarze <schwarze@openbsd.org>

Unifdef TM_GMTOFF TM_ZONE USG_COMPAT ALTZONE to make the code more readable.
No binary change when compiled with -g0.
Note that wcsftime.c did not even compile without TM_ZONE.
OK millert@


# 6a6b658a 09-Feb-2015 tedu <tedu@openbsd.org>

- register int idays; /* unsigned would be so 2003 */
+ int idays; /* unsigned would be so 2003 */

register is so 1973


# 4b1ac4ad 09-Feb-2015 tedu <tedu@openbsd.org>

the one true type of time_t is a signed integer


# a9cc4792 09-Feb-2015 tedu <tedu@openbsd.org>

move include lines around a bit


# dac9fc19 06-May-2014 tedu <tedu@openbsd.org>

enh@google reported a warning in crufty y2k code. just delete it.
ok deraadt stsp


# 8095dfd3 20-Jan-2013 millert <millert@openbsd.org>

Properly handle "%%" and "%N" where N is not a supported escape.
This is consistent with strftime(3) behavior. OK stsp@


# 0f9d3ff8 10-Oct-2011 espie <espie@openbsd.org>

put in code for wcstfime, as discussed with millert@ and stsp@ (and tested
by ajacoutot@, thx), to be linked in and activated alongside wscanf...