X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=mingwrt%2FChangeLog;h=9f99b73b4643cb43776c607cdfac182de8a6551e;hb=425e1c3b3cd7fd2dda8ec36d6bfd0063db3160d2;hp=8064858b531e2e00a3e68647ab58589658101987;hpb=c0372a60e6918ffd944670ba8502a0d99fa69044;p=mingw%2Fmingw-org-wsl.git diff --git a/mingwrt/ChangeLog b/mingwrt/ChangeLog index 8064858..9f99b73 100644 --- a/mingwrt/ChangeLog +++ b/mingwrt/ChangeLog @@ -1,3 +1,28 @@ +2017-02-04 Keith Marshall + + Resolve a global variable naming inconsistency. + + * mingwex/ofmt.c (__mingw_output_format_flag): Rename it as... + (__mingw_output_format_flags): ...this, at point of definition, and + update all references, to maintain consistency with usage... + * mingwex/ofmtctl.c (__mingw_output_format_flags): ...here. + + * mingwex/stdio/pformat.c: Update references. + +2017-01-30 Keith Marshall + + Implement strerror_r()/strerror_s() API. + + * mingwex/strerror_r.c: New file; it implements... + (strerror_r): ...this new POSIX.1-2001 conforming function. + + * include/string.h (strerror_s): Add function prototype, subject to... + [_MSVCR80_DLL || _WIN32_WINNT_VISTA]: ...this DLL version dependency; + otherwise implement an inline wrapper function to emulate it, using... + [_POSIX_C_SOURCE > 200112L] (strerror_r): ...this; add prototype. + + * Makefile.in (libmingwex.a): Add strerror_r.$OBJEXT + 2017-01-30 Keith Marshall Avoid -Wformat noise from snprintf() and vsnprintf()