diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-11-29 22:03:40 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-11-29 22:03:40 +0200 |
commit | da212ddb7ed3f4578f1c83d9e0e472245efbea1e (patch) | |
tree | 325d01bb8203e5ea4bd70ff06faffbf21cb93beb /missing_d | |
parent | 28436897d3289b4fe1b7e84e63c9cffecfcb17f6 (diff) | |
download | egawk-da212ddb7ed3f4578f1c83d9e0e472245efbea1e.tar.gz egawk-da212ddb7ed3f4578f1c83d9e0e472245efbea1e.tar.bz2 egawk-da212ddb7ed3f4578f1c83d9e0e472245efbea1e.zip |
Doc updates. Strftime fix for PC. Check ranges in REs.
Diffstat (limited to 'missing_d')
-rw-r--r-- | missing_d/ChangeLog | 4 | ||||
-rw-r--r-- | missing_d/strftime.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/missing_d/ChangeLog b/missing_d/ChangeLog index 40e4ede0..4eaa802f 100644 --- a/missing_d/ChangeLog +++ b/missing_d/ChangeLog @@ -1,3 +1,7 @@ +Mon Nov 29 20:09:40 2010 Eli Zaretskii <eliz@gnu.org> + + * strftime.c <tzname>: Don't declare for __MINGW32__. + Thu Nov 25 21:16:58 2010 Arnold D. Robbins <arnold@skeeve.com> * strcoll.c: New file. diff --git a/missing_d/strftime.c b/missing_d/strftime.c index 69a0c517..d4b9ecf4 100644 --- a/missing_d/strftime.c +++ b/missing_d/strftime.c @@ -55,8 +55,10 @@ # endif #endif #if HAVE_TZNAME +#ifndef __MINGW32__ extern char *tzname[]; #endif +#endif /* Do multibyte processing if multibytes are supported, unless multibyte sequences are safe in formats. Multibyte sequences are |