diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:54:45 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:54:45 +0300 |
commit | f20ab7c3039a4023f41372bfe4bde3b16d481df7 (patch) | |
tree | 4425de8c6177df655f165cb61d70d0acb5fdc968 /missing | |
parent | 6607eb3d5e40b98d2acc8f6b0d6a0b5a4b0f56bd (diff) | |
download | egawk-f20ab7c3039a4023f41372bfe4bde3b16d481df7.tar.gz egawk-f20ab7c3039a4023f41372bfe4bde3b16d481df7.tar.bz2 egawk-f20ab7c3039a4023f41372bfe4bde3b16d481df7.zip |
Move to gawk-3.0.4.
Diffstat (limited to 'missing')
-rw-r--r-- | missing/strftime.3 | 2 | ||||
-rw-r--r-- | missing/strftime.c | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/missing/strftime.3 b/missing/strftime.3 index 92d25b2c..e6b270c8 100644 --- a/missing/strftime.3 +++ b/missing/strftime.3 @@ -340,7 +340,7 @@ then there may be some performance improvements by not defining .nf Arnold Robbins .sp -INTERNET: arnold@gnu.ai.mit.edu +INTERNET: arnold@gnu.org .fi .SH ACKNOWLEDGEMENTS Thanks to Geoff Clare <gwc@root.co.uk> for helping debug earlier diff --git a/missing/strftime.c b/missing/strftime.c index 18a6a7bf..6e6872b5 100644 --- a/missing/strftime.c +++ b/missing/strftime.c @@ -32,6 +32,7 @@ * Updated January, 1995 * Updated September, 1995 * Updated January, 1996 + * Updated July, 1997 * * Fixes from ado@elsie.nci.nih.gov * February 1991, May 1992 @@ -43,6 +44,8 @@ * Applied September 1995 * %V code fixed (again) and %G, %g added, * January 1996 + * %v code fixed, better configuration + * July 1997 */ #ifndef GAWK @@ -122,7 +125,7 @@ extern char *strchr(); #if !defined(OS2) && !defined(MSDOS) && defined(HAVE_TZNAME) extern char *tzname[2]; extern int daylight; -#ifdef SOLARIS +#if defined(SOLARIS) || defined(mips) extern long timezone, altzone; #else extern int timezone, altzone; |