.
[pspp] / lib / ChangeLog
1 2003-11-22  Jim Meyering  <jim@meyering.net>
2
3         * xmalloc.c (x2nrealloc_inline): Fix typos in comments: s/size/size_t/.
4
5 2003-11-17  Bruno Haible  <bruno@clisp.org>
6
7         * vasnprintf.c (alloca): Remove fallback definition.
8         (freea): Remove definition.
9         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
10         Reported by Paul Eggert.
11
12 2003-11-17  Jim Meyering  <jim@meyering.net>
13
14         On systems without utime and without a utimes function capable of
15         dealing with a NULL struct utimbuf* argument, this utime replacement
16         could -- in unusual circumstances -- leak a file descriptor.
17         * utime.c: Include <unistd.h> and <errno.h>.
18         (utime_null): Be sure to close `fd' and to preserve errno.
19         Reported by Geoff Collyer via Arnold Robbins.
20
21 2003-11-16  Paul Eggert  <eggert@twinsun.com>
22             Bruno Haible  <bruno@clisp.org>
23
24         Protect against address arithmetic overflow.
25         * printf-args.h: Include stddef.h.
26         (arguments): Change type of field 'count' to size_t.
27         * printf-args.c (printf_fetchargs): Use size_t instead of
28         'unsigned int' where appropriate.
29         * printf-parse.h: Include sys/types.h.
30         (char_directive): Change type of *arg_index fields to ssize_t.
31         (char_directives): Change type of fields 'count', max_*_length to
32         size_t.
33         * printf-parse.c: Include sys/types.h and xsize.h.
34         (SSIZE_MAX): Define fallback value.
35         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
36         instead of 'int' where appropriate. Check a_allocated, d_allocated
37         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
38         * vasnprintf.c: Include xsize.h.
39         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
40         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
41         overflow. Avoid wraparound when converting a width or precision from
42         decimal to binary.
43
44 2003-11-16  Bruno Haible  <bruno@clisp.org>
45
46         Update from GNU gettext.
47         * printf-parse.c: Generalize to it can be compiled for wide strings.
48         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
49         * vasnprintf.c: Generalize to it can be compiled for wide strings.
50         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
51         SNPRINTF): New macros.
52         Don't include <alloca.h> if the file is used inside libintl.
53         (local_wcslen): New function, for Solaris 2.5.1.
54         (VASNPRINTF): Use it instead of wcslen.
55
56 2003-11-16  Bruno Haible  <bruno@clisp.org>
57
58         * xsize.h (xmax): New function.
59         (xsum, xsum3, xsum4): Declare as "pure" functions.
60
61 2003-11-12  Paul Eggert  <eggert@twinsun.com>
62
63         * xalloc.h: Do not include <limits.h> or <stdint.h>.
64         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
65         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
66         heuristic is just as accurate as far as we know, and it removes a
67         dependency on size_max.m4 and ptrdiff_max.m4.
68
69 2003-11-12  Paul Eggert  <eggert@twinsun.com>
70
71         * xstrtol.c (__xstrtol): Remove "break" immediately after
72         "return", to pacify some unknown compiler.  Problem reported
73         by Joerg Schilling.
74
75 2003-11-11  Bruno Haible  <bruno@clisp.org>
76
77         * xsize.h (SIZE_MAX): Remove fallback definition.
78         * xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
79         defined.
80
81 2003-11-10  Paul Eggert  <eggert@twinsun.com>
82
83         * xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
84         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
85         rejected some allocations of exactly SIZE_MAX - 2 bytes.
86         From Bruno Haible.
87         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
88         not (size_t) -1, since it's defined here.
89
90 2003-11-06  Paul Eggert  <eggert@twinsun.com>
91
92         * xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
93         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
94         Reject sizes of exactly SIZE_MAX bytes.
95         * xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
96         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
97
98 2003-11-05  Bruno Haible  <bruno@clisp.org>
99
100         * xsize.h: Include limits.h, to avoid a possible collision with
101         SIZE_MAX defined in <limits.h> on Solaris.
102
103 2003-11-04  Bruno Haible  <bruno@clisp.org>
104
105         * xsize.h: New file.
106         * linebreak.c: Include xsize.h.
107         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
108         argument for overflow.
109         Suggested by Paul Eggert.
110
111 2003-10-31  Bruno Haible  <bruno@clisp.org>
112
113         * wait-process.c (wait_process): Use waitid with WNOWAIT if available,
114         to avoid (extremely rare) race condition.
115         Suggested by Paul Eggert.
116
117 2003-11-03  Jim Meyering  <jim@meyering.net>
118
119         * userspec.c: Include "userspec.h".
120         * userspec.h: New file.
121
122 2003-10-31  Paul Eggert  <eggert@twinsun.com>
123
124         * mountlist.h (struct mount_entry.me_type_malloced): New member.
125         * mountlist.c (SIZE_MAX): Define if not defined already.
126         (read_filesystem_list): Set and use me_type_malloced.
127         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
128         whatever the type happens to be), for brevity and consistency.
129         Check for size calculation overflow on Alphas running OSF/1.
130
131 2003-10-31  Jim Meyering  <jim@meyering.net>
132
133         * hash.c: Include "xalloc.h" for use of xalloc_oversized.
134
135         * linebuffer.c: Include <string.h> for declaration of memset.
136
137 2003-10-30  Paul Eggert  <eggert@twinsun.com>
138             Bruno Haible  <bruno@clisp.org>
139
140         * vasprintf.c: Include <limits.h>, <stdlib.h>.
141         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
142
143 2003-10-29  Paul Eggert  <eggert@twinsun.com>
144
145         * xalloc.h (xalloc_oversized): Now a macro, not a function,
146         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
147         no longer needed.
148         * quotearg.c (quotearg_n_options): Use it.
149         * group-member.c: Include <stdbool.h>.
150         (free_group_info): Arg is now const *; don't free arg.
151         (get_group_info): Now returns bool and accepts struct group_info *,
152         rather than returning a malloc'ed struct group_info *.
153         All uses changed.  Check for overflow in internal size calculation.
154
155         * getusershell.c (readname): Simplify the code by using x2nrealloc
156         rather than xmalloc/xrealloc.
157         * linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
158         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
159         conformance bug: the old code used a pointer after freeing the
160         storage that it addressed.
161         * hash.c (hash_initialize): Simplify the code by using xalloc_oversized
162         rather than doing it by hand.
163         * getgroups.c (getgroups): Don't use xrealloc, since we don't need
164         the buffer preserved.  Use free and xmalloc instead.
165         * quotearg.c (quotearg_n_options): Likewise.
166         Use a simpler test for size overflow.  Don't use xalloc_oversized
167         because unsigned int might be wider than size_t (!); this suggests
168         that we should switch from unsigned int to size_t for slot numbers.
169
170 2003-10-27  Bruno Haible  <bruno@clisp.org>
171
172         * stdbool_.h: Better support for BeOS.
173
174 2003-10-27  Paul Eggert  <eggert@twinsun.com>
175
176         * exclude.c (new_exclude): Use xzalloc rather than xmalloc
177         to allocate the returned structure.  Do not allocate a subarray,
178         as x2nrealloc will do that.
179         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
180         instead of xnrealloc.
181         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
182
183 2003-10-26  Paul Eggert  <eggert@twinsun.com>
184
185         * xalloc.h (xalloc_oversized): New static inline function, for
186         callers that want to do their own size-overflow checking.  Include
187         <stdbool.h>, since xalloc_oversized returns bool.
188         * xalloc.c (array_size_overflow): Remove.  All callers changed
189         to use xalloc_oversized.
190
191         Add two functions x2realloc, x2nrealloc, for programs that grow
192         arrays dynamically by doubling their sizes.
193         * xalloc.h (x2realloc, x2nrealloc): New decls.
194         * xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
195         New functions.
196
197         Port to C99 semantics for 'inline' of external functions.
198         Bug reported by Bruno Haible.
199         * xmalloc.c (xnmalloc_inline): New static inline function,
200         with the old contents of xnmalloc.
201         (xnmalloc, xmalloc): Use it.
202         (xnrealloc_inline): New static inline function,
203         with the old contents of xnrealloc.
204         (xnrealloc, xrealloc): Use it.
205
206         * alloc.c (alloca): xmalloc cannot return NULL, so don't test for that.
207
208 2003-10-25  Paul Eggert  <eggert@twinsun.com>
209
210         Fix several address-calculation bugs in the hash modules,
211         plus some minor code cleanup.
212
213         * hash.h: Include <stdbool.h>, for bool.
214         * hash.c: Don't include <stdbool.h>, since hash.h does it now.
215         * hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
216         hash_get_n_entries, hash_get_max_bucket_length,
217         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
218         hash_rehash): Use size_t rather than unsigned.
219         * hash.c (struct hash_table, hash_get_n_buckets,
220         hash_get_n_buckets_used, hash_get_n_entries,
221         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
222         hash_get_entries, hash_do_for_each, hash_string, is_prime,
223         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
224         Likewise.
225         (SIZE_MAX): Define if not defined.
226         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
227         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
228         hash_print):
229         Use const * when possible.
230         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
231         (check_tuning): Fix bug: if tuning parameters were very close to
232         0 or 1, rounding errors could have caused subscript violations.
233         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
234         (hash_initialize): Add 'fail:' label
235         to free table and return NULL, and use it to simplify code.
236         Use calloc rather than clearing the storage ourself.
237         (hash_initialize, hash_rehash): Check for arithmetic overflow in
238         buffer size calculations.
239         * hash-pjw.h (hash_pjw): Use size_t, not unsigned.
240         Include <stddef.h>, for size_t.
241         * hash-pjw.c (hash_pjw): Likewise.
242         Switch to method described by Bruno Haible.
243         Include <limits.h>, for CHAR_BIT.
244         (SIZE_BITS): New macro.
245
246 2003-10-21  Paul Eggert  <eggert@twinsun.com>
247
248         * getndelim2.c (getndelim2): When size calculation overflows,
249         ceiling the allocation at NMAX bytes rather than silently
250         discarding input bytes before NMAX is reached.  This makes
251         a difference only if NMAX exceeds SIZE_MAX / 2.
252
253         * obstack.c: Merge from glibc.
254         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
255         Add libc_hidden_def (_obstack_newchunk).
256         (_obstack_free) [! defined _LIBC]: Remove.
257         [defined _LIBC]: Make a strong alias from obstack_free, rather than
258         a clone of the function body.
259         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
260         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
261
262         * obstack.h: Indenting cleanup, to make it easier to merge with glibc.
263         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
264         arg to memcpy.
265
266         * obstack.h (obstack_1grow_fast): Properly parenthesize arg.
267         (obstack_ptr_grow_fast, obstack_int_grow_fast):
268         Don't use lvalue casts, as GCC plans to remove support for them
269         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
270         was also present in the non-GCC version, indicating that this
271         code had always been buggy and had never been widely used.
272         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
273         Use the fast variant of each macro, rather than copying the
274         definiens of the fast variant; that way, we'll be more likely to
275         catch future bugs in the fast variants.
276
277 2003-10-20  Bruno Haible  <bruno@clisp.org>
278
279         * wait-process.h: New file, from GNU gettext.
280         * wait-process.c: New file, from GNU gettext.
281
282 2003-10-19  Jim Meyering  <jim@meyering.net>
283
284         * vasnprintf.c (vasnprintf): Work around losing snprintf on HPUX 10.20.
285
286 2003-10-16  Paul Eggert  <eggert@twinsun.com>
287
288         * getgroups.c: Include <errno.h>, <stdlib.h>.
289         (getgroups): First arg is int, not size_t.
290         Don't let 'free' mangle errno.
291
292 2003-10-16  Jim Meyering  <jim@meyering.net>
293
294         * xmalloc.c: Include <string.h>, for declarations of memset and memcpy.
295
296 2003-10-15  Paul Eggert  <eggert@twinsun.com>
297
298         * exclude.c: Do not include <inttypes.h> or <stdint.h>.
299         (SIZE_MAX): Remove.
300         (new_exclude, add_exclude_file): Initial size no longer needs to
301         be a power of 2.
302         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
303         our own address arithmetic overflow checking.
304
305         * fnmatch.c (SIZE_MAX): Define if standard headers don't.
306         (fnmatch): Do not alloca more than 2000 wide characters;
307         instead, use malloc for large buffers.
308         Check for address arithmetic overflow, and return -1
309         with errno set to ENOMEM in that case.
310         * fnmatch_loop.c (ALLOCA_LIMIT): New macro.
311         (NEW_PATTERN): Do not alloca more than 8000 bytes;
312         instead, return -1.  Check for address arithmetic overflow.
313
314 2003-10-14  Paul Eggert  <eggert@twinsun.com>
315
316         Handle invalid suffixes and overflow independently, so that
317         callers can treat them independently as needed.  Fix some bugs in
318         suffix handling, e.g., "100k@" was not diagnosed as an invalid
319         suffix for a human-readable blocksize.  The major caller-visible
320         change is the addition of a new
321         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
322         that both overflow and suffix chars were found.
323
324         * human.c (humblock): Don't check separately for invalid suffix
325         char; that is xstrtoumax's job (now that its bug is fixed).
326         * xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
327         INTMAX_MAX]: New macros.
328         * xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
329         TYPE_MAXIMUM): New macros.
330         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
331         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
332         if overflow occurs, as it's what __strtol does and it's more useful
333         in practice.
334         (__xstrtol): If __strtol reports some error other than ERANGE,
335         reflect it to the caller as LONGINT_INVALID.  If it reports
336         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
337         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
338         * xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
339         value.
340         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
341         * xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
342         * xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
343         [defined UINTMAX_MAX]: New macros.
344
345 2003-10-14  Bruno Haible  <bruno@clisp.org>
346
347         * fatal-signal.h: Improved comments. Suggested by Paul Eggert.
348         * fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
349         Also use volatile where needed.
350
351 2003-10-12  Paul Eggert  <eggert@twinsun.com>
352
353         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
354         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
355         and define in terms of the other primitives.
356         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
357         (SIZE_MAX): Define if not already defined.
358         (array_size_overflow): New function.
359         (xalloc_die): Abort instead of exiting if 'error' returns.
360         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
361         (xmalloc, xrealloc): Use them.
362         (xcalloc): Check for address arithmetic overflow.
363         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
364         a bit faster than strcpy.
365
366 2003-10-08  Paul Eggert  <eggert@twinsun.com>
367
368         Merge getpass from libc, plus a few fixes.
369
370         * getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
371         Include <stdbool.h>.
372         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
373         __fsetlocking to empty.
374         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
375         do include <bits/libc-lock.h>.
376         Do not include <fcntl.h>; not needed.
377         [_LIBC]: Include <wchar.h>.
378         (NOTCANCEL_MODE): New macro.
379         (flockfile, funlockfile) [_LIBC]: New macros.
380         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
381         [!_LIBC]: New macros.
382         (call_fclose): New function.
383         (getpass): Use it.  Save tty stream separately; this simplifies the
384         code and makes it more reliable if stdin happens to equal stdout.
385         Invoke __fsetlocking on tty.
386         Handle thread cancellation if needed.
387         Namespace cleanup (use __tcgetattr, __getline).
388         Use bool for Booleans.
389         [USE_IN_LIBIO]: Handle wide streams.
390         [!_LIBC]: Unconditionally do the fseek, since we don't know what
391         stream might go where.
392
393         * unlocked-io.h: Include <stdio.h>, so that the caller
394         doesn't have to include <stdio.h> before us.
395         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
396         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
397         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
398         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
399         if not declared, so that we can use getpass.c code from libc without
400         rewriting it.
401         (flockfile, ftrylockfile, funlockfile): New macros.
402
403 2003-10-06  Bruno Haible  <bruno@clisp.org>
404
405         * version-etc-2.h: Remove file.
406         * version-etc-2.c: Remove file.
407
408 2003-09-25  Jim Meyering  <jim@meyering.net>
409             Bruno Haible  <bruno@clisp.org>
410
411         This lets translators provide better translations for the
412         "Written by ..." part of --version output.
413         * version-etc.h: Include stdarg.h.
414         (version_etc_copyright): Declare as readonly.
415         (version_etc): Make this function variadic with a NULL-terminated list
416         of author name strings.
417         (version_etc_va): New declaration.
418         * version-etc.c: Include stdarg.h, stdlib.h.
419         (version_etc_copyright): Declare as readonly.
420         (version_etc_va): New function. Provide a different translatable string
421         for each possible number of authors < 10. Abbreviate when there are 10
422         authors or more.
423         (version_etc): Make this function variadic. Call version_etc_va.
424         Suggestion from Gary V. Vaughan.
425
426         * long-options.h (parse_long_options): Change prototype: the authors
427         string is moved to the end and becomes variadic.
428         * long-options.c: Include stdarg.h.
429         (parse_long_options): Make this function variadic, too.
430         Call version_etc_va, not version_etc.
431
432 2003-10-06  Bruno Haible  <bruno@clisp.org>
433
434         * fatal-signal.h: New file, from GNU gettext.
435         * fatal-signal.c: New file, from GNU gettext.
436
437 2003-10-04  Karl Berry  <karl@gnu.org>
438
439         * argp*: update from libc.
440
441 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
442
443         * getpass.c (getpass): Use a no-op fseek when switching from input to
444         output mode on the same stream.
445
446 2003-09-29  Paul Eggert  <eggert@twinsun.com>
447
448         * strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
449         Fix arg typo in previous patch.
450
451 2003-09-28  Jim Meyering  <jim@meyering.net>
452
453         * error.c: Correct cpp indentation.
454
455 2003-09-27  Paul Eggert  <eggert@twinsun.com>
456
457         * minmax.h (MIN, MAX) [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
458         Omit the special code that used __typeof__, since we worry that
459         it could be more trouble than it's worth.  See:
460         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
461         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
462
463         * free.c: New file.
464
465 2003-09-26  Jim Meyering  <jim@meyering.net>
466
467         * error.c (error_tail): Move some declarations
468         into inner scope where the local variables are used.
469
470 2003-09-26  Bruno Haible  <bruno@clisp.org>
471
472         * stpncpy.h (gnu_stpncpy): New declaration.
473         (stpncpy): Define as alias for gnu_stpncpy.
474         * stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
475
476 2003-09-26  Paul Eggert  <eggert@twinsun.com>
477
478         * error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
479         (error_tail): Do not loop, reallocating temporary buffer, since
480         the output cannot contain more wide characters than the input
481         contains bytes, the size must be big enough already.  This avoids
482         one potential size overflow calculation.  Check for size overflow
483         when calculating temporary buffer size.  Free temporary buffer
484         when done, if it was allocated with malloc; this plugs a memory
485         leak.  Remove casts from void * to pointers, that are no longer
486         needed now that we're assuming C89 or better.
487
488         Merge error changes from glibc.
489
490         * error.c, error.h: Update copyright notice header to match glibc.
491         * error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
492         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
493         Disable cancellation while printing error.
494         * error.h: Prepend __ to parameter names.
495
496 2003-09-25  Karl Berry  <karl@gnu.org>
497
498         * argp-fmtstream.c, argp-help.c: update from libc.
499
500 2003-09-25  Bruno Haible  <bruno@clisp.org>
501
502         * version-etc-2.h: New file, from version-etc.h with modifications.
503         * version-etc-2.c: New file, from version-etc.c with modifications.
504
505 2003-09-25  Simon Josefsson  <jas@extundo.com>
506
507         * xgetdomainname.h: New file.
508         * xgetdomainname.c: New file.
509
510 2003-09-25  Simon Josefsson  <jas@extundo.com>
511             Bruno Haible  <bruno@clisp.org>
512
513         * getdomainname.h: New file.
514         * getdomainname.c: New file.
515
516 2003-09-24  Paul Eggert  <eggert@twinsun.com>
517
518         * linebuffer.c (freebuffer): Don't free the argument, just
519         the buffer associated with the argument.  Bug reported by
520         Simon Josefsson.
521
522 2003-09-19  Karl Berry  <karl@gnu.org>
523
524         * argp.h: update from libc.
525
526 2003-09-16  Paul Eggert  <eggert@twinsun.com>
527
528         * linebuffer.c (readlinebuffer): Return NULL immediately upon
529         input error, instead of returning NULL the next time we are called
530         (and therefore losing track of errno).
531
532 2003-09-15  Paul Eggert  <eggert@twinsun.com>
533
534         * getndelim2.c (getndelim2): Don't trash errno when a read
535         fails, so that the caller gets the proper errno.
536
537         * readutmp.c (read_utmp): Likewise.
538         Check for fstat error.  Close stream and free storage
539         when failing.
540
541 2003-09-14  Bruno Haible  <bruno@clisp.org>
542
543         * fwriteerror.h: New file.
544         * fwriteerror.c: New file.
545
546 2003-09-14  Jim Meyering  <jim@meyering.net>
547
548         * getloadavg.c: Correct cpp indentation.
549         * strdup.c: Likewise.
550         * vasnprintf.c: Likewise.
551
552 2003-09-12  Paul Eggert  <eggert@twinsun.com>
553
554         * argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
555         * obstack.c [!defined _LIBC]: Likewise.
556         * argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
557         * exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
558         * exitfail.c: Don't include stdlib.h; no longer needed.
559
560         More changes to assume C89 or better.
561
562         * error.c (error_tail): Assume vprintf.
563
564         * argmatch.c (getenv): Remove decl.
565         * progreloc.c (get_full_program_name): Define via prototype.
566         * setenv.c (clearenv): Likewise.
567         * stpncpy.c: Do not include <string.h> or <sys/types.h>; not
568         needed.
569         * strdup.c: Include <stdlib.h>, <string.h> unconditionally.
570         (malloc, memcpy): Remove decls.
571         * strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
572         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
573         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
574         (memcpy): Remove macro.
575         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
576         (__P): Remove.  All uses removed.
577         (PTR): Remove.  All uses changed to void *.
578         (CHAR_BIT, NULL): Remove.
579         (spaces, zeros, memset_space, memset_zero)
580         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
581         Remove.
582         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
583         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
584         Define with prototype.
585         Remove now-unnecessary prototype decl.
586         (extra_args_spec): Assume ANSI C.  All uses changed.
587         (extra_args_spec_iso): Remove.
588         (my_strftime, emacs_strftimeu): Define via prototype.
589         * strtod.c: Include <float.h>, <stdlib.h>, <string.h>
590         unconditionally.
591         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
592         * strtoimax.c: Include <stdlib.h> unconditionally.
593         (strtoul, strtol): Remove decls.
594         * strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
595         LONG_MAX): Remove.
596         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
597         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
598         (LOCALE_PARAM_PROTO): New macro.
599         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
600         (INTERNAL (strtol), strtol): Define with a prototype.
601         (PARAMS): Remove.  All uses removed.
602         * tempname.c: Include <string.h> unconditionally.
603         * userspec.c: Include <stdlib.h>, <string.h> unconditionally.
604         * xgethostname.c (main): Define with a prototype.
605         * xmalloc.c: Include "xalloc.h" first, to check interface.
606         Include <stdlib.h> unconditionally.
607         (calloc, malloc, realloc, free): Remove decls.
608         * xstrtod.c: Include "xstrtod.h" first, to check interface.
609         Include <stdlib.h> unconditionally.  Sort include file names.
610         (strtod): Remove.
611         (xstrtod): Define with a prototype.
612         * xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
613         (strtol, strtoul): Remove decls.
614
615 2003-09-11  Paul Eggert  <eggert@twinsun.com>
616
617         * strndup.c: Don't include <stdio.h>, <sys/types.h>.
618         Include <stdlib.h>, <string.h> unconditionally.
619         Remove now-unnecessary cast to char *.
620         * strnlen.c: Include <string.h> unconditionally.
621         * yesno.c (yesno): Define with a prototype.
622
623 2003-09-10  Bruno Haible  <bruno@clisp.org>
624
625         * strcspn.c: Include <string.h> unconditionally.
626         * strpbrk.c: Include <string.h> unconditionally.
627         * strstr.c: Include <string.h> unconditionally.
628         * unicodeio.c: Include <string.h> unconditionally.
629         * setenv.c: Include <stdlib.h> and <string.h> unconditionally.
630         * unsetenv.c: Likewise.
631         * xreadlink.c: Include <stdlib.h> unconditionally.
632         * yesno.c: Include <stdlib.h> unconditionally.
633         (rpmatch): Add prototype.
634
635 2003-09-10  Jim Meyering  <jim@meyering.net>
636
637         * error.c: Correct indentation of cpp directives.
638
639 2003-09-09  Paul Eggert  <eggert@twinsun.com>
640
641         More K&R removal.
642
643         * acosl.c (main): Use a prototype.
644         * asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
645         tanl.c: Likewise.
646
647         * getloadavg.c (getloadavg, main): Define via prototypes.
648
649         * getopt.h (struct option.name): Assume C89, and use 'const'.
650         (getopt, etopt_long, getopt_long_only, _getopt_internal)
651         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
652         with a prototype.
653         * getopt.c (const): Remove macro.
654         Include <string.h> unconditionally.
655         (my_index): Remove; all uses changed to strchr.
656         (strlen): Remove decl.
657         (exchange): Remove forward decl; no longer needed.
658         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
659         Define with prototype.
660         * getopt1.c (const): Remove macro.
661         (getopt_long, getopt_long_only, main): Define with prototype.
662
663         * getugroups.c: Include <string.h> unconditionally.
664
665         * getusershell.c: Include <stdlib.h> unconditionally.
666         (getusershell, setusershell, endusershell, readname, main):
667         Define with prototypes.
668
669         * group-member.c: Include group-member.h first.
670         Include <stdlib.h> unconditionally.
671
672         * hard-locale.c: Include hard-locale.h first.
673         Include <stdlib.h>, <string.h> unconditionally.
674
675         * hash.c (free, malloc): Remove decls.
676         Include <stdlib.h> unconditionally.
677
678         * human.c: Include <stdlib.h>, <string.h> unconditionally.
679         (getenv): Do not declare.
680
681         * idcache.c: Include <string.h> unconditionally.
682
683         * long-options.c: Include long-options.h first, to test interface.
684         Include <stdlib.h> unconditionally.
685
686         * makepath.c: Include makepath.h first, to test interface.
687         Include <stdlib.h> and <string.h> unconditionally.
688
689         * linebuffer.c: Include <stdlib.h>.
690         (free): Remove decl.
691
692         * malloc.c: Include <stdlib.h>, for malloc; don't bother with stddef.h.
693         rpl_malloc returns void *, not char *.
694         * realloc.c (rpl_realloc): Likewise.  Also, define with a prototype.
695
696         * md5.h: Include <limits.h> unconditionally.
697         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
698         (__P): Remove; all uses removed.
699         * md5.c: Include "md5.h" first.
700         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
701         md5_buffer, md5_process_bytes, md5_process_block):
702         Define with prototypes.
703         * sha.h (__P): Remove all uses.  (It wasn't defined??)
704         * sha.c: Include "sha.h" first.
705         Include <stdlib.h>, <string.h> unconditionally.
706
707         * memchr.c (__ptr_t): Remove; all uses changed to void *.
708         * memcmp.c (__ptr_t): Likewise.
709         * memrchr.c (__ptr_t): Likewise.
710         * memchr.c, memcmp.c, memcoll.c, memrchr.c:
711         Include <string.h> unconditionally.
712         * memchr.c, memrchr.c: Include <limits.h> unconditionally.
713         * memchr.c: Include <stdlib.h> unconditionally.
714         * memchr.c (LONG_MAX): Remove.
715         * memrchr.c (LONG_MAX): Likewise.
716         * memchr.c (__memchr): Define via a prototype.
717         * memrchr.c (__memrchr): Likewise.
718         * memcmp.c (__P): Remove, and remove all uses.
719         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
720         Remove forward decls; no longer needed.
721         * memcpy.c, memmove.c, memset.c: Include <stddef.h>.
722         Use types required by C89 in prototype.
723
724         * mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
725         * savedir.c: Likewise.
726         * mkdir.c (free): Remove decl.
727         * rmdir.c (rmdir): Define with a prototype.
728         * savedir.c: Include savedir.h first, to test interface.
729
730         * mktime.c (STDC_HEADERS): Remove.
731         Include <stdlib.h>, <string.h> unconditionally.
732
733         * modechange.c: Include <stdlib.h> unconditionally.
734         (malloc): Remove decl.
735
736         * mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
737         (free): Remove decl.
738
739         * obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
740         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
741         (This type really should be intptr_t, but that's a C99ism.)
742         (_obstack_memcpy): Remove: all uses changed to memcpy.
743         Include <string.h> unconditionally.
744         (struct obstack): Assume __STDC__ for types of members
745         chunkfun, freefun, extra_arg.
746         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
747         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
748         obstack_begin, obstack_specify_allocation,
749         obstack_specify_allocation_with_arg, obstack_chunkfun,
750         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
751         Remove unprototyped decls and the macros that use them.
752         * obstack.c (POINTER): Remove.  All uses changed to void *.
753         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
754         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
755         (defined __STDC__ && __STDC__)]:
756         Remove nonprototyped code.
757         Include <stdlib.h> unconditionally.
758         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
759         _obstack_allocated_p, _obstack_free, obstack_free,
760         _obstack_memory_used, print_and_abort):
761         Define using prototypes.
762         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
763         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
764         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
765         obstack_next_free, obstack_object_size, obstack_room) [0]:
766         Remove unused, unprototyped code.
767
768         * path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
769
770         * physmem.c (physmem_total, physmem_available, main): Define
771         with prototypes.
772
773         * posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
774         (main): Define with a prototype.
775
776         * posixver.c (getenv): Remove decl.
777
778         * putenv.c (malloc): Returns void *, not char *.
779         Include <string.h> unconditionally.
780         (strchr, memcpy, NULL): Do not define.
781
782         * readtokens.c: Include readtokens.h first, to test interface.
783         Include <stdlib.h>, <string.h> unconditionally.
784         (init_tokenbuffer): Define with a prototype.
785
786         * regex.c (PARAMS): Remove.  All uses removed.
787         All uses of _RE_ARGS removed, too.
788         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
789         unconditionally.
790         (bzero): Assume memset exists.
791         (memcmp, memcpy, NULL): Remove.
792         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
793         char, or assignments to local vars of type signed char.
794         (init_syntax_once, PREFIX(extract_number_and_incr),
795         PREFIX(print_partial_compiled_pattern),
796         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
797         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
798         PREFIX(regex_grow_registers), PREFIX(regex_compile),
799         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
800         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
801         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
802         wcs_compile_range, byte_compile_range, truncate_wchar,
803         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
804         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
805         count_mbs_length, wcs_re_match_2_internal,
806         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
807         PREFIX(alt_match_null_string_p),
808         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
809         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
810         regfree, PREFIX(extract_number)): Define with prototype.  Remove
811         now-unnecessary declaration, if any.
812         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
813         regcomp, regexec):
814         Remove now-unnecessary casts among pointer types.
815         * regex.h (_RE_ARGS): Remove.  All uses removed.
816
817         * rename.c: Include <stdlib.h>, <string.h> unconditionally.
818         (free): Remove decl.
819
820         * rpmatch.c: Include <stdlib.h> unconditionally.
821
822         * same.c: Include <stdlib.h>, <string.h> unconditionally.
823         (free): Remove decl.
824
825         * save-cwd.c: Include <stdlib.h> unconditionally.
826         * xgetcwd.c: Likewise.
827
828         * stat.c: Include <stdlib.h>, <string.h> unconditionally.
829         (free): Remove decl.
830
831         * strchrnul.c (strchrnul): Define with a prototype.
832         Fix bug: c_in was not converted to char before searching.
833
834         The following changes are not K&R related:
835
836         * group-member.h: Include <sys/types.h>, so that this file is
837         self-contained.
838         * makepath.h: Likewise.
839
840         * getusershell.c (readname, default_index, line_size, readname):
841         Use size_t, not int, for sizes.
842         (readname): If the size overflows, report an error instead of
843         looping forever.
844
845 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
846
847         * getndelim2.c: Assume stdlib.h per the C89 spec.
848
849 2003-09-08  Paul Eggert  <eggert@twinsun.com>
850
851         Assume C89 or better; remove K&R cruft.
852         A few of these changes were first proposed by Derek Robert Price
853         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
854
855         * addext.c: Include <string.h> unconditionally.
856         * backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
857         Don't declare getenv or malloc.
858
859         * alloca.c: Include <string.h>, <stdlib.h> unconditionally.
860         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
861         (NULL): Remove.
862         (find_stack_direction, alloca): Use prototypes.
863
864         * atexit.c (atexit): Define using a prototype.
865
866         * basename.c, dirname.c, stripslash.c:
867         Include <string.h> unconditionally.
868
869         * bcopy.c: Include <stddef.h>.
870         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
871
872         * canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
873
874         * error.h (error, error_at_line, error_print_progname)
875         [! (defined (__STDC__) && __STDC__)]: Remove decls.
876         * error.c: Include error.h first, to check interface.
877         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
878         (VA_START): Remove; all uses changeed to va_start.
879         (exit, strerror): Remove decls.
880         (error_print_progname): Prototype uncondionally.
881         Don't include <errno.h>; no longer needed.
882         (private_strerror): Remove.
883         (error_tail): Always define.
884         (error, error_at_line): Assume C89 or better; always use prototypes.
885         * fatal.c: Include "fatal.h" first, to test interface.
886         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
887         (VA_START): Remove; all uses changed to va_start.
888         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
889         this case.
890         (exit): Remove decl.
891         (fatal): Prototype unconditionally.  Assume va_start works.
892         Abort at end, to pacify gcc.
893
894         * euidaccess.c (main): Define with a prototype.
895
896         * exclude.c: Include <stdlib.h>, <string.h> unconditionally.
897
898         * exitfail.c: Include <stdlib.h> unconditionally.
899
900         * fnmatch_.h (__P): Remove.  All uses changed to assume
901         prototypes.
902         * fnmatch.c: Include fnmatch.h first, to test interface.
903         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
904         (getenv): Remove decl.
905         (fnmatch): Define using a prototype.
906         * fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
907         (FCT): Define using a prototype.
908
909         * getdate.y: Include <stdlib.h>, <string.h> unconditionally.
910
911         * gethostname.c: Include <stddef.h>.
912         (gethostname): Define with prototype.  Length is size_t, not int.
913
914 2003-09-08  Paul Eggert  <eggert@twinsun.com>
915
916         * getversion.c: Remove; was migrated to backupfile.c in 1997.
917         getversion.c should have been removed then, but was accidentally
918         preserved.
919
920         * utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
921         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
922
923 2003-09-07  Paul Eggert  <eggert@twinsun.com>
924
925         * time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
926         copy_tm_result.  Bug reported by Simon Josefsson in
927         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
928
929 2003-09-06  Paul Eggert  <eggert@twinsun.com>
930
931         * time_r.c, time_r.h: New files.
932
933         * mktime.c (my_mktime_localtime_r): Remove; all uses changed to
934         __localtime_r.
935         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
936         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
937
938         * strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
939         __gmtime_r.
940         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
941         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
942         Include <time_r.h>.
943
944         * timegm.c: Switch to glibc implementation, with the following changes:
945         [defined HAVE_CONFIG_H]: Include <config.h>.
946         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
947         (__mktime_internal) [!defined _LIBC]: New decl.
948         (__gmtime_r) [!defined _LIBC]: New macro and function.
949         (timegm): Use a prototype, since gnulib assumes C89.
950         Do not bother declaring tmp to be const, as it's not really usefu.
951         * timegm.h: Hoist "#include <time.h>" out of #ifdef.
952         (timegm): Declare only if HAVE_DECL_TIMEGM.
953
954 2003-09-03  Paul Eggert  <eggert@twinsun.com>
955
956         * human.c (human_readable): Fix bug that rounded 10501 to 10k.
957         Bug reported by Lute Kamstra in
958         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
959
960         * getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
961         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
962         course with correspondingly smaller numbers for tomorrow and
963         yesterday.  From Tadayoshi Funaba.  Originally installed into
964         sh-utils on 1999-08-07, but the patch got lost (I guess during the
965         coreutils merge?).
966
967 2003-08-31  Simon Josefsson  <jas@extundo.com>
968
969         * timegm.h: New file.
970         * timegm.c: New file.  Based on wget-1.8.2/src/http.c:mktime_from_utc.
971
972 2003-08-31  Karl Berry  <karl@gnu.org>
973
974         * argp.h: update from libc.
975
976 2003-08-28  Bruno Haible  <bruno@clisp.org>
977
978         * binary-io.h: Undefine O_BINARY before defining it. This avoids a
979         warning on QNX, which defines O_BINARY to 000000.
980
981 2003-08-24  Bruno Haible  <bruno@clisp.org>
982
983         * binary-io.h: Include <stdio.h>, to avoid a compilation error when
984         MSVC7 <stdio.h> is included later.
985
986 2003-08-20  Bruno Haible  <bruno@clisp.org>
987
988         * progname.h: New file, from GNU gettext.
989         * progname.c: New file, from GNU gettext.
990         * progreloc.c: New file, from GNU gettext.
991
992 2003-08-19  Bruno Haible  <bruno@clisp.org>
993
994         * xstrdup.c: Assume <string.h> exists.
995
996 2003-08-18  Jim Meyering  <jim@meyering.net>
997
998         * setenv.h: Indent nested cpp directive.
999         * vasnprintf.c: Remove trailing blanks.
1000
1001 2003-08-17  Simon Josefsson  <jas@extundo.com>
1002             Bruno Haible  <bruno@clisp.org>
1003
1004         * xstrndup.h: New file.
1005         * xstrndup.c: New file.
1006
1007 2003-08-17  Bruno Haible  <bruno@clisp.org>
1008
1009         * strndup.h: New file.
1010
1011 2003-08-16  Paul Eggert  <eggert@twinsun.com>
1012
1013         * regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
1014         space, undoing this 2003-08-12 change:
1015         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
1016
1017 2003-08-16  Jim Meyering  <jim@meyering.net>
1018
1019         Merge from coreutils.
1020         * xstrtoimax.c: #else #if -> #elif.
1021         * xstrtoumax.c: Likewise.
1022
1023 2003-08-15  Paul Eggert  <eggert@twinsun.com>
1024
1025         * config.charset, ref-add.sin, ref-del.sin: Use three spaces,
1026         rather than tab, after '#' in shell-script copyright notices.
1027         Suggested by Bruno Haible.
1028
1029 2003-08-15  Jim Meyering  <jim@meyering.net>
1030         and Paul Eggert  <eggert@twinsun.com>
1031
1032         Merge from coreutils.
1033         * readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
1034         member but strut utmpx does not.  Needed for AIX 4.3.3.
1035         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
1036
1037 2003-08-15  Jim Meyering  <jim@meyering.net>
1038
1039         Merge from coreutils.
1040         * xgethostname.c: Include <stdlib.h>.
1041         (xghostname): Don't exit for anything other than memory-related
1042         failure; just return NULL.
1043         * userspec.c: Include "posixver.h".
1044         (parse_user_spec): Accept `.' as a separator only
1045         in pre-POSIX-200112 mode.
1046         * strtoimax.c: Use #elif rather than #else #if.
1047         * strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
1048         Remove function, now that we can rely on a working tzset function.
1049         [!_LIBC]: Ensure that the required autoconf test has been run.
1050         [!defined _NL_CURRENT && HAVE_STRFTIME]:
1051         Use underlying_strftime for %r.
1052         * sha.c: Merge in some clean-up and optimization changes from glibc.
1053         * sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
1054         Ensure that it is a multiple of 64.
1055         Rearrange loop exit tests so as to avoid performing an
1056         additional fread after encountering an error or EOF.
1057         * realloc.c: Update copyright date.
1058
1059 2003-08-14  Jim Meyering  <jim@meyering.net>
1060
1061         Merge from coreutils.
1062         * obstack.h: Whitespace changes.
1063         * mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
1064         and xcalloc return values.
1065         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
1066         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
1067         hang on OSF/1 5.1 for DIR on both local and remote file systems.
1068         Reported by (and fix confirmed by) Nelson H. F. Beebe.
1069         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
1070         error from mntctl.
1071         Use mntctl's return value to drive the entry-processing loop, since
1072         we can't rely on the value of the vmt_length member in the last
1073         entry.  On some systems doing so could result in exhausting
1074         virtual memory.  Based in part on a patch from Mike Jetzer.
1075
1076 2003-08-14  Jim Meyering  <jim@meyering.net>
1077         and Paul Eggert  <eggert@twinsun.com>
1078
1079         Merges from coreutils, plus other fixes.
1080         * physmem.c: Merge in portability changes from gcc/libiberty
1081         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
1082         for credits and details.  Thanks to Kaveh Ghazi for helping
1083         to keep these files in sync.
1084         (ARRAY_SIZE): Define it.
1085         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
1086         * memcasecmp.c: Remove unnecessary parentheses after 'defined'.
1087         (memcasecmp): Don't assume size_t fits in unsigned int.
1088         Remove casts and duplicate code.
1089         * md5.c: Include <string.h> and <stdlib.h> unconditionally.
1090         (memcpy): Remove definition.
1091         Merge in some clean-up and optimization changes from glibc.
1092         [BLOCKSIZE]: Move definition to top of file.
1093         Ensure that it is a multiple of 64.
1094         Rearrange loop exit tests so as to avoid performing an
1095         additional fread after encountering an error or EOF.
1096         * md5.h (md5_uintptr): Define.
1097         * makepath.c (CLEANUP_CWD): Report an error if we failed to
1098         return to the initial working directory.  Preserve errno
1099         for caller.
1100         * idcache.c: Include "xalloc.h".
1101         (xmalloc, xrealloc): Remove decls.
1102         (getuser): Remove casts no longer required in C89.
1103         * human.c: Include stdio.h, for sprintf.
1104         * group-member.c: Include "xalloc.h".
1105         (xmalloc, xrealloc): Remove decls.
1106         (get_group_info): Remove casts no longer required in C89.
1107         * getusershell.c (readname): Remove casts no longer required in C89.
1108         * gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
1109         * getline.c: Whitespace fix, from coreutils.
1110
1111 2003-08-13  Paul Eggert  <eggert@twinsun.com>
1112
1113         * exclude.c: Include <ctype.h>
1114         (IN_CTYPE_DOMAIN): New macro.
1115         (is_space): New fn.
1116         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
1117         and empty lines.
1118
1119         * argp-help.c, argp-parse.c, config.charset, getopt.h:
1120         Undo previous (whitespace-only) change.
1121
1122 2003-08-12  Paul Eggert  <eggert@twinsun.com>
1123
1124         * argp-help.c, argp-parse.c, config.charset, getopt.h:
1125         Normalize leading white space and remove trailing white space.
1126         * ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
1127         notice, as per ../config/srclist-update.
1128
1129         Merge from coreutils.
1130         * euidaccess.h: New file.
1131         * euidaccess.c: Include it.
1132         * .cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
1133         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
1134         * regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
1135
1136 2003-08-11  Bruno Haible  <bruno@clisp.org>
1137
1138         * vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
1139         (vasnprintf): Use it instead of wcslen.
1140
1141 2003-08-11  Bruno Haible  <bruno@clisp.org>
1142
1143         * stdbool_.h (_Bool): Undo last change; instead use a negative enum
1144         value to ensure that _Bool promotes to int. Use #define for _Bool when
1145         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
1146
1147 2003-08-10  Karl Berry  <karl@gnu.org>
1148
1149         * regex.h: update from libc (whitespace fix).
1150
1151 2003-08-09  Paul Eggert  <eggert@twinsun.com>
1152
1153         Merge some files from coreutils.  These changes were
1154         originally made by Jim Meyering.
1155         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
1156         many older Unixes require this.
1157         * lib/alloca.c (alloca): Remove cast to argument of free;
1158         no longer needed in C89.
1159         * lib/alloca_.h, lib/regex.h: Fix white space to match
1160         what GNU indent does.
1161
1162 2003-08-05  Paul Eggert  <eggert@twinsun.com>
1163
1164         * bumpalloc.h: Remove.
1165
1166 2003-08-04  Paul Eggert  <eggert@twinsun.com>
1167
1168         * getloadavg.c: Change copyright notice and spacing to conform to
1169         GNU coding style.
1170
1171         Merge from coreutils.
1172         * error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is 1.
1173         From glibc.
1174         * getdate.y (date): Also accept dates like May-23-2003; suggestion
1175         from Karl Berry, implemented by Jim Meyering.
1176         * getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
1177         from Dmitry V. Levin.
1178         Remove anachronistic cast of xrealloc.
1179         * fnmatch_.h (__const): Remove.  Use 'const'.
1180         * fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
1181         type. Otherwise, it wouldn't compile with at least /bin/cc on
1182         ymp-cray-unicos9.0.2.X.
1183         Combine two mostly-identical uses of alloca into one.
1184         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
1185
1186 2003-08-04  Dave Love <d.love@dl.ac.uk>
1187
1188         [From Emacs.]
1189
1190         * getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
1191         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
1192         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
1193         obsolete NLIST_NAME_UNION.
1194         [__GNU__]: Undef BSD and FSCALE.
1195         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
1196
1197 2003-08-03  Paul Eggert  <eggert@twinsun.com>
1198
1199         * stdbool_.h (_Bool): Make it signed char, instead of
1200         an enum type, so that it's guaranteed to promote to int.  See:
1201         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
1202
1203 2003-07-31  Paul Eggert  <eggert@twinsun.com>
1204
1205         * strerror.c: Include config.h, limits.h.  Declare sprintf.
1206         (strerror): Don't assume that a printable int fits in 14 bytes.
1207
1208 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
1209             Bruno Haible  <bruno@clisp.org>
1210
1211         * getline.h (getline, getdelim): Change return type to ssize_t.
1212         * getline.c (getline, getdelim): Likewise.
1213         Remove _GNU_SOURCE define; now it's defined in config.h through
1214         m4/getline.m4.
1215
1216 2003-07-22  Paul Eggert  <eggert@twinsun.com>
1217
1218         * xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
1219         over-parenthesization in macros.
1220
1221         Sync with coreutils.
1222
1223         * xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
1224         required by C99.
1225
1226         Use `exit_failure' for xalloc and xmemcoll instead of their own
1227         private exit-failure variables.
1228         * xalloc.h (xalloc_exit_failure): Remove.
1229         * xmalloc.c: Likewise.  Include exitfail.h.
1230         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
1231         * xmemcoll.h (xmemcoll_exit_failure): Remove.
1232         * xmemcoll.c: Likewise.  Include exitfail.h.
1233         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
1234
1235 2003-07-18  Paul Eggert  <eggert@twinsun.com>
1236
1237         * closeout.h (close_stdout_set_status, close_stdout_status): Remove.
1238         * closeout.c: Likewise.  Include "closeout.h" right after config.h,
1239         to test that it can stand by itself.  Include "exitfail.h".
1240         Clients should set exit_failure instead.
1241         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
1242
1243 2003-07-18  Andreas Schwab  <schwab@suse.de>
1244
1245         * memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
1246
1247 2003-07-18  Bruno Haible  <bruno@clisp.org>
1248
1249         * getndelim2.h: New file.
1250         * getndelim2.c: Make into a module of its own. Include config.h,
1251         getndelim2.h.
1252         (getndelim2): Make non-static. Change return type to ssize_t.
1253         * getline.h: Change argument names.
1254         * getline.c: Include getndelim2.h instead of getndelim2.c.
1255         * getnline.c: Include getndelim2.h.
1256
1257 2003-07-17  Bruno Haible  <bruno@clisp.org>
1258
1259         * Makefile.am: Remove file.
1260         * Makefile.in: Remove file.
1261
1262 2003-07-17  Bruno Haible  <bruno@clisp.org>
1263
1264         * getnline.h: New file.
1265         * getnline.c: New file.
1266         * getndelim2.c: New file, extracted from getline.c.
1267         (getndelim2): Renamed from getdelim2, with added nmax argument.
1268         * getline.c: Include getndelim2.c.
1269         (getdelim2): Moved out to getndelim2.c.
1270         (getline, getdelim): Update.
1271
1272 2003-07-15    <karl@gnu.org>
1273
1274         * vasnprintf.c: update from gettext.
1275
1276 2003-07-15  Jim Meyering  <jim@meyering.net>
1277
1278         * makepath.c (make_path): Enclose diagnostic in _(...).
1279
1280 2003-07-14  Paul Eggert  <eggert@twinsun.com>
1281
1282         * asnprintf.c, asprintf.c, config.charset, gettext.h,
1283         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
1284         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
1285         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
1286         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
1287         updated automatically by ../config/srclist-update.  This changes
1288         their license from LPGL to GPL.
1289
1290 2003-07-14  Jim Meyering  <jim@meyering.net>
1291
1292         Don't emit diagnostics.  Let callers do that.
1293         * save-cwd.c: Don't include "error.h".
1294         (save_cwd): Don't call error.  Ensure that errno is valid
1295         when returning nonzero.
1296
1297         * save-cwd.h (restore_cwd): Update prototype.
1298         * save-cwd.c (restore_cwd): Remove two parameters.
1299         Simplify.  Don't call error upon failure.  Let callers do that.
1300         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
1301         when auditing is enabled.  But don't bother updating the #if.
1302
1303 2003-07-14  Simon Josefsson  <jas@extundo.com>
1304
1305         * mempcpy.h: New file.
1306         * mempcpy.c: New file.
1307
1308 2003-07-14  Paul Eggert  <eggert@twinsun.com>
1309
1310         * ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
1311         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
1312         unicodeio.c, unicodeio.h, unlocked-io.h:
1313         Switch from LGPL to GPL.
1314
1315 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
1316
1317         * obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
1318         it breaks C++ compilation.
1319         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
1320
1321 2003-07-10  Jim Meyering  <jim@meyering.net>
1322
1323         * vasnprintf.c: Remove trailing blanks.
1324         Make cpp indentation consistent.
1325
1326 2003-07-09  Paul Eggert  <eggert@twinsun.com>
1327
1328         * alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
1329         posixver.c, strftime.c, strnlen.c, strverscmp.c:
1330         Switch from LGPL to GPL.
1331
1332 2003-07-07  Paul Eggert  <eggert@twinsun.com>
1333
1334         * mktime.c: Fix some boundary cases and remove need for floating point.
1335
1336         Issue a compile-time diagnostic if time_t is floating point, or if
1337         two's complement arithmetic is not in effect, or if arithmetic
1338         right shift does not propagate the sign.  These assumptions were
1339         all in the original code but they weren't checked.
1340
1341         (TIME_T_MIDPOINT, verify): New macros.
1342         (__isleap): Remove; it has integer overflow problems.
1343         (leapyear): New function, without those problems.
1344         (ydhms_tm_diff): Remove; splitting into two parts.
1345         (ydhms_diff): New function, containing the arithmetic part of
1346         the old ydhms_tm_diff function.  Issue a compile-time
1347         diagnostic if we are not using C99 integer division.
1348         Avoid casts when possible.
1349         (guess_time_tm): New function, containing the checking part of
1350         the old ydhms_tm_diff function.  Return the new value, rather than
1351         the difference between it and the old.  Accept a new argument T
1352         so that *T specifies the old value.  Check for overflow in the result.
1353
1354         (__mktime_internal): Use a time_t offset, not a long int offset.
1355         This undoes the 2003-06-04 change, which is no longer needed now
1356         that we have better overflow checking.
1357         (localtime_offset): Likewise.
1358
1359         (__mktime_internal): Avoid harmful overflow on hosts where time_t
1360         and long are 64-bit but int is only 32-bit.
1361         (ydhms_diff): Use long int to store year1 and yday1.
1362         Issue a compile-time diagnostic if long int is not wide enough.
1363
1364         (__mktime_internal): Use long int to store adjusted year and yday.
1365         Use plain C rather than preprocessor commands, if that doesn't
1366         affect efficiency.
1367         Check for overflow (and try to repair) after each probe
1368         rather than checking only at the very end.  This avoids some bugs
1369         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
1370         does not equal GMT offset at maximum time).
1371         Use integer to check for overflow rather than floating point; this
1372         is more portable to non-IEEE hosts, and is a tad faster.
1373         When we detect that we are oscillating between two values,
1374         don't check whether tm_isdst has the requested value, since
1375         we already know the answer.  When tm_isdst has the wrong value,
1376         use a different heuristic to find the right one, based on the
1377         extreme values actually observed in practice in tz2003a,
1378         rather than the (overly optimistic) "previous 3 calendar quarters".
1379
1380         (not_equal_tm, print_tm, check_result): Use "const T" rather than
1381         "T const" to accommodate glibc style.
1382         (check_result): Use less-confusing report format.  "long" -> "long int.
1383         (main): Likewise.
1384         Don't loop if the iteration overflows time_t.
1385         Allow a negative step in the iteration.
1386
1387 2003-07-01  Paul Eggert  <eggert@twinsun.com>
1388
1389         * xreadlink.c: Include <sys/types.h> unconditionally, instead of
1390         having it depend on HAVE_SYS_TYPES_H.
1391
1392 2003-06-25  Bruno Haible  <bruno@clisp.org>
1393
1394         * readlink.c: New file.
1395
1396 2003-06-20  Bruno Haible  <bruno@clisp.org>
1397
1398         Assume C89, so PARAMS isn't needed.
1399         * unicodeio.h (PARAMS): Remove.
1400         * unicodeio.c: Don't use PARAMS.
1401
1402 2003-06-18  Jim Meyering  <jim@meyering.net>
1403
1404         Merge changes from coreutils.
1405         * readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
1406         Remove explicit declarations of xmalloc and realloc.
1407         Include xalloc.h.
1408         (read_utmp): Remove anachronistic cast of xmalloc.
1409
1410 2003-06-17  Paul Eggert  <eggert@twinsun.com>
1411
1412         Assume C89, so PARAMS isn't needed.
1413         * backupfile.h (PARAMS): Remove.  All uses removed.
1414         * closeout.h, dirname.h, filemode.h, fsusage.h, getdate.h, getline.h,
1415         group-member.h, hard-locale.h, hash.h, linebuffer.h, long-options.h,
1416         makepath.h, memcasecmp.h, memcoll.h, modechange.h, mountlist.h,
1417         path-concat.h, physmem.h, posixtm.h, quote.h, readutmp.h, same.h,
1418         save-cwd.h, savedir.h, stdio-safer.h, strtoimax.c, strverscmp.h,
1419         unistd-safer.h, version-etc.h, xalloc.h, xreadlink.h, xstrtod.h,
1420         xstrtol.h: Likewise.
1421         * filemode.h, hard-locale.h, memcoll.h, modechange.h, physmem.h,
1422         same.h, strverscmp.h: Do not include config.h; no longer needed.
1423         Anyway, config.h should always be included before any other file.
1424
1425 2003-06-11  Simon Josefsson  <jas@extundo.com>
1426
1427         * sysexit_.h: New file.
1428
1429 2003-05-20  Derek Price  <derek@ximbiot.com>
1430
1431         * stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is necessary.
1432
1433 2003-06-10  Simon Josefsson  <jas@extundo.com>
1434
1435         * strchrnul.h: New file.
1436         * strchrnul.c: New file.
1437
1438 2003-06-10  Simon Josefsson <jas@extundo.com>
1439
1440         * argp.h: New file, from glibc.
1441         * argp-ba.c: New file, from glibc.
1442         * argp-eexst.c: New file, from glibc.
1443         * argp-fmtstream.c: New file, from glibc.
1444         * argp-fmtstream.h: New file, from glibc.
1445         * argp-fs-xinl.c: New file, from glibc.
1446         * argp-help.c: New file, from glibc.
1447         * argp-namefrob.h: New file, from glibc.
1448         * argp-parse.c: New file, from glibc.
1449         * argp-pv.c: New file, from glibc.
1450         * argp-pvh.c: New file, from glibc.
1451         * argp-xinl.c: New file, from glibc.
1452
1453 2003-06-07  Jim Meyering  <jim@meyering.net>
1454
1455         * readtokens.h: Put `Free Software Foundation, Inc.'
1456         in place of my name in the copyright comment.
1457         Remove definition and uses of __P.
1458
1459         From coreutils.
1460         * stat.c: Don't declare xmalloc explicitly.
1461         Instead, include "xalloc.h".
1462         * readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
1463         xrealloc, and xcalloc return values.
1464         * xgetcwd.c (xgetcwd): Include "xgetcwd.h".
1465         Improve comment.
1466         * xgetcwd.h: Remove definition/uses of PARAMS.
1467
1468 2003-06-06  Jim Meyering  <jim@meyering.net>
1469
1470         * stdbool_.h: Renamed from stdbool.h.in.
1471
1472 2003-06-06  Jim Meyering  <jim@meyering.net>
1473
1474         Merge from coreutils.
1475         * same.c: (same_name): Declare *_basename locals to be `const'.
1476         Consolidate declarations and initializations of *_base* locals.
1477
1478         Merge from coreutils.
1479         This avoids a core dump on systems without GNU putenv,
1480         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
1481         * putenv.c (__set_errno, LOCK, UNLOCK): Define.
1482         (unsetenv): New static function, from GNU libc.
1483         (rpl_putenv): Use it.
1484
1485         * modechange.c: Remove trailing blanks.
1486
1487         Merge from coreutils.
1488         * fsusage.c: Remove declaration of statfs.
1489         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
1490
1491         * posixtm.c: Include <stdbool.h> unconditionally.
1492
1493 2003-06-05  Paul Eggert  <eggert@twinsun.com>
1494
1495         * mktime.c (__mktime_internal): When resolving a tm_isdst
1496         mismatch, look in future quarters as well as past.  This fixes a
1497         bug when processing fall-backwards gaps immediately after a long
1498         period of daylight-saving time.
1499
1500         * mktime.c: Assume freestanding C89 or better.
1501         (HAVE_LIMITS_H): Remove.  Assume it's 1.
1502         (__P): Remove; not used.
1503         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
1504         (mktime, not_equal_tm, print_tm, check_result,
1505         main): Use prototypes.  Use const * where appropriate.
1506         (main): Fix typo in testing code that uncovered by above changes.
1507         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
1508
1509 2003-06-04  Paul Eggert  <eggert@twinsun.com>
1510
1511         * mktime.c: Fix Debian bug 177940
1512         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
1513         (localtime_offset): Now long int, not time_t, because we want it
1514         to be guaranteed to be signed.  All uses changed.
1515         (__mktime_internal): If overflow would occur when adding offset,
1516         don't add it.
1517
1518         Merge 'human' changes from coreutils.  Rewrite to support
1519         locale-specific notations like thousands separators.
1520         * human.c: Simplify authorship notice.
1521         Include human.h immediately after config.h.
1522         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
1523         <limits.h>: Do not include, since human.h does.
1524         (SIZE_MAX, UINTMAX_MAX): New macros.
1525         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
1526         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
1527         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
1528         (power_letter): Renamed from suffixes.
1529         (generate_suffix_backwards): Remove.
1530         (adjust_value): Now takes int style (because of human.h changes)
1531         and long double value (for greater precision on some platforms).
1532         (group_number): New function.
1533         (human_readable): Use it.  Use integer options, not enum.
1534         Put the options before the sizes in the arg list.
1535         Support all the new options.
1536         The old human_readable function has been removed;
1537         use inttostr.h instead.
1538         (human_readable, default_block_size, humblock):
1539         Use uintmax_t, not int, for block sizes.
1540         (human_readable_inexact, block_size_types): Remove.
1541         (block_size_opts): New constant.
1542         (human_options): Renamed from human_block_size, with new signature
1543         that allows block sizes up to UINTMAX_MAX.  All callers changed.
1544         * human.h: Add copyright and authorship notice.
1545         Include <limits.h> and <stdbool.h> unconditionally.
1546         (PARAMS): Remove.  All uses removed.
1547         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
1548         (enum human_inexact_style): Remove tag; now a nameless enum.
1549         (human_floor, human_ceiling, human_round_to_even): Now have
1550         values 2, 0, 1 rather than -1, 1, 0.
1551         (human_group_digits, human_suppress_point_zero, human_autoscale,
1552         human_base_1024, human_SI, human_B): New constants.
1553         (human_readable_inexact, human_block_size): Remove.
1554         (human_readable): Size args are now uintmax_t, not int.
1555         (human_options): New decl.
1556
1557         * exclude.c: (new_exclude, add_exclude): Remove casts that are
1558         unnecessary now that we assume C89 or better.  This change
1559         imported from coreutils.
1560
1561         * mktime.c (__mktime_internal): Do not reject negative timestamps
1562         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
1563         in the 2003-05-30 sync from glibc.
1564
1565         .h files should stand alone, but we shouldn't include <sys/types.h>
1566         if we can get away with just <stddef.h>.
1567
1568         * __fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
1569         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
1570         rather than <sys/types.h>, as we merely need size_t.
1571         * dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
1572         to get size_t.
1573         * hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
1574         Include <stdio.h>, to get FILE.
1575         * memcasecmp.c: Don't include <sys/types.h>, as we can assume
1576         memcasecmp.h has included <stddef.h> and all we need is size_t.
1577         * memcoll.c: Include "memcoll.h", which gets us size_t and checks
1578         our interface, instead of including <sys/types.h>
1579
1580 2003-06-02  Paul Eggert  <eggert@twinsun.com>
1581
1582         [from coreutils]
1583         Fix some minor time-related bugs with POSIX time arguments.
1584         Some valid time stamps were being rejected (notably -1, and
1585         time stamps before 1900 on 64-bit hosts).  And some invalid
1586         time stamps were being accepted, e.g. September 31.
1587
1588         * posixtm.h (posixtime): Return bool instead of time_t, so
1589         that we can return (time_t) -1 successfully.
1590         * posixtm.c: Likewise.
1591         [HAVE_STDBOOL_H]: Include <stdbool.h>.
1592         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
1593         (t): Remove static var.
1594         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
1595         of static var.  All uses changed.
1596         (year): Do not reject years before 1900; they can occur with
1597         64-bit time_t.
1598         (posix_time_parse): Do not check for out-of-range components;
1599         that is now the caller's responsibility, since our checks were
1600         only approximations.
1601         (posixtime): Use mktime to check for out-of-range components,
1602         since it knows them exactly.
1603         If mktime returns (time_t) -1, check whether an error actually occurred
1604         by invoking localtime on -1.
1605         (main) [TEST_POSIXTIME]: Check for input data errors, and report
1606         posixtime failures better.
1607         Improve the test data (in comments only).
1608
1609 2003-05-30    <karl@gnu.org>
1610
1611         * mktime.c: update from libc.
1612
1613 2003-05-30  Bruno Haible  <bruno@clisp.org>
1614
1615         * config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
1616         * localcharset.h: Likewise.
1617         * localcharset.c: Likewise.
1618
1619 2003-05-28  Paul Eggert  <eggert@twinsun.com>
1620
1621         Assume the headers required for C89 freestanding compilers.
1622         * addext.c, backupfile.c, fsusage.c, human.c, pathmax.h,
1623         rpmatch.c, userspec.c, xreadlink.c, xstrtol.c: Include <limits.h>
1624         without checking for HAVE_LIMITS_H.
1625         * backupfile.c, fsusage.c, hash.c, human.c, safe-read.c, userspec.c,
1626         xstrtol.c (CHAR_BIT) : Don't define, since <limits.h> is guaranteed
1627         to do that.
1628         * fatal.c: Include <stdarg.h> without checking for __STDC__.
1629         * exclude.c: Include <stdbool.h> unconditionally.
1630         * tempname.c: Include <stddef.h> unconditionally.
1631         * hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
1632         * modechange.c, rpmatch.c (NULL): Don't define, since
1633         <stddef.h> does that.
1634         * quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
1635         * safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
1636         * safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer needed.
1637         * xstrtol.c: Likewise.
1638         * safe-read.c: Remove TYPE_SIGNED; no longer needed.
1639         * savedir.c: Include <stddef.h> instead of defining NULL.
1640
1641         * addext.c (addext): Use assignment rather than cast, to avoid
1642         warnings on some platforms.
1643
1644         * mktime.c (__mktime_internal): Do not reject negative timestamps
1645         arbitrarily.
1646
1647 2003-05-10  Bruno Haible  <bruno@clisp.org>
1648
1649         * linebreak.c (iconv_string_length): Don't return -1 just because the
1650         string is longer than 4 KB.
1651
1652 2003-05-12  Jim Meyering  <jim@meyering.net>
1653
1654         * strftime.c (my_strftime): Let the `-' (no-pad) flag affect
1655         the space-padded-by-default conversion specifiers, %e, %k, %l.
1656
1657 2003-05-03  Bruno Haible  <bruno@clisp.org>
1658
1659         Upgrade to Unicode-4.0.
1660         * linebreak.c (nonspacing_table_data): Change width of U+00AD,
1661         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
1662         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
1663         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
1664         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
1665         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
1666         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
1667         Change width of U+E0100..U+E01EF from 1 to 0.
1668
1669 2003-04-25  Bruno Haible  <bruno@clisp.org>
1670
1671         * copy-file.c: Include <stddef.h>, for size_t.
1672
1673 2003-04-25  Jim Meyering  <jim@meyering.net>
1674
1675         * copy-file.c (copy_file_preserving): Declare buf_size to be
1676         of type size_t, not int.
1677
1678 2003-04-11  Jim Meyering  <jim@meyering.net>
1679
1680         Merge changes from Coreutils.
1681
1682         2003-03-22  Jim Meyering  <jim@meyering.net>
1683
1684         * strftime.c (widen): Cast alloca return value to proper type.
1685
1686         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
1687
1688         From GNU libc.
1689         * strftime.c (my_strftime): Handle very large width
1690         specifications for numeric values correctly.  Improve checks for
1691         overflow.
1692
1693         2003-01-19  Jim Meyering  <jim@meyering.net>
1694
1695         * strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical definitions.
1696         (nl_get_alt_digit) [! defined my_strftime]: Define.
1697         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
1698         _nl_get_alt_digit and _nl_get_walt_digit.
1699
1700         * strftime.c (my_strftime): Merge in locale-related changes from libc.
1701         These changes have no effect outside of _LIBC.
1702
1703 2003-04-10  Bruno Haible  <bruno@clisp.org>
1704
1705         * findprog.h: New file, from GNU gettext.
1706         * findprog.c: New file, from GNU gettext.
1707
1708 2003-04-05  Jim Meyering  <jim@meyering.net>
1709
1710         Merge changes from Coreutils.
1711
1712         * exclude.h (PARAMS): Remove definition and uses.
1713         * exclude.c: Remove uses of `PARAMS'.
1714
1715         * dirname.c [TEST_DIRNAME]: Update build instructions for test.
1716         Add test-cases for DOS filenames. Declare program_name.
1717         (main): Set up program_name.  Patch by Rich Dawe.
1718
1719         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
1720         error from mntctl.
1721         Use mntctl's return value to drive the entry-processing loop, since
1722         we can't rely on the value of the vmt_length member in the last
1723         entry.  On some systems doing so could result in exhausting
1724         virtual memory.  Based in part on a patch from Mike Jetzer.
1725
1726 2003-04-04  Bruno Haible  <bruno@clisp.org>
1727
1728         * linebreak.h: New file, from GNU gettext.
1729         * linebreak.c: New file, from GNU gettext with slight modifications.
1730         * lbrkprop.h: New file, from GNU gettext.
1731
1732 2003-04-03  Bruno Haible  <bruno@clisp.org>
1733
1734         * utf8-ucs4.h: New file, from GNU gettext.
1735         * utf16-ucs4.h: New file, from GNU gettext.
1736         * ucs4-utf8.h: New file, from GNU gettext.
1737         * ucs4-utf16.h: New file, from GNU gettext.
1738
1739 2003-04-02  Bruno Haible  <bruno@clisp.org>
1740
1741         * binary-io.h: New file, from GNU gettext.
1742
1743 2003-04-01  Bruno Haible  <bruno@clisp.org>
1744
1745         * pathname.h: New file, from GNU gettext.
1746         * concatpath.c: New file, from GNU gettext.
1747
1748 2003-03-30  Bruno Haible  <bruno@clisp.org>
1749
1750         * copy-file.c (copy_file_preserving): Don't set owner if the function
1751         chown() doesn't exist.
1752
1753 2003-03-28  Bruno Haible  <bruno@clisp.org>
1754
1755         * copy-file.h: New file, from GNU gettext.
1756         * copy-file.c: New file, from GNU gettext.
1757
1758 2003-03-18  Jim Meyering  <jim@meyering.net>
1759
1760         * quote.c (quote_n): Fix typo in comment.
1761
1762 2003-03-14  Jim Meyering  <jim@meyering.net>
1763
1764         Merge changes from Coreutils.
1765         * obstack.h (obstack_object_size): Declare temporary, __o,
1766         to be const, in order to avoid warnings.
1767         (obstack_room): Likewise.
1768         (obstack_empty_p): Likewise.
1769
1770 2003-03-13  Paul Eggert  <eggert@twinsun.com>
1771
1772         Merge changes from Bison.
1773         * obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
1774         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
1775         when compiling Bison 1.875's `bitset bset = obstack_alloc
1776         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
1777         * hash.c: Include <stdbool.h> unconditionally.
1778
1779 2003-03-09  Paul Eggert  <eggert@twinsun.com>
1780
1781         * argmatch.c (EXIT_FAILURE): Define if the system doesn't.
1782         Reported by Bruce Becker; see:
1783         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
1784
1785 2003-03-03  Paul Eggert  <eggert@twinsun.com>
1786             Bruno Haible  <bruno@clisp.org>
1787
1788         * mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
1789         Reported by John Hughes, see
1790         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
1791
1792 2003-02-19  Paolo Bonzino  <bonzini@gnu.org>
1793
1794         * poll_.h: New file.
1795         * poll.c: New file.
1796
1797 2003-02-18  Paolo Bonzino  <bonzini@gnu.org>
1798
1799         * mathl.h: New file.
1800         * acosl.c: New file.
1801         * asinl.c: New file.
1802         * atanl.c: New file.
1803         * ceill.c: New file.
1804         * cosl.c: New file.
1805         * expl.c: New file.
1806         * floorl.c: New file.
1807         * frexpl.c: New file.
1808         * ldexpl.c: New file.
1809         * logl.c: New file.
1810         * sincosl.c: New file.
1811         * sinl.c: New file.
1812         * sqrtl.c: New file.
1813         * tanl.c: New file.
1814         * trigl.c: New file.
1815         * trigl.h: New file.
1816
1817 2003-02-17  Bruno Haible  <bruno@clisp.org>
1818
1819         * mkdtemp.h: New file, from GNU gettext.
1820         * mkdtemp.c: New file, from GNU gettext.
1821
1822 2003-01-31  Bruno Haible  <bruno@clisp.org>
1823
1824         * rename.c: #undef rename before defining rpl_rename.
1825         * strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
1826
1827 2003-01-30  Bruno Haible  <bruno@clisp.org>
1828
1829         * printf-args.h: New file, from GNU gettext.
1830         * printf-args.c: New file, from GNU gettext.
1831         * printf-parse.h: New file, from GNU gettext.
1832         * printf-parse.c: New file, from GNU gettext.
1833         * vasnprintf.h: New file, from GNU gettext.
1834         * vasnprintf.c: New file, from GNU gettext.
1835         * asnprintf.c: New file, from GNU gettext.
1836         * vasprintf.h: New file, from GNU gettext with modifications.
1837         * vasprintf.c: New file, from GNU gettext.
1838         * asprintf.c: New file, from GNU gettext.
1839
1840 2003-01-29  Bruno Haible  <bruno@clisp.org>
1841
1842         * stpncpy.h: New file, from GNU gettext with modifications.
1843         * stpncpy.c: New file, from GNU gettext with modifications.
1844
1845 2003-01-28  Bruno Haible  <bruno@clisp.org>
1846
1847         * c-ctype.h: New file, from GNU gettext, with changes suggested by
1848         Paul Eggert.
1849         * c-ctype.c: New file, from GNU gettext, with changes suggested by
1850         Paul Eggert.
1851
1852 2003-01-27  Bruno Haible  <bruno@clisp.org>
1853
1854         * xsetenv.h: New file, from GNU gettext.
1855         * xsetenv.c: New file, from GNU gettext.
1856
1857 2003-01-23  Bruno Haible  <bruno@clisp.org>
1858
1859         * minmax.h: New file, from GNU gettext, with comments from Paul Eggert.
1860
1861 2003-01-22  Bruno Haible  <bruno@clisp.org>
1862
1863         * exit.h: New file, from GNU gettext.
1864
1865 2003-01-11  Bruno Haible  <bruno@clisp.org>
1866
1867         * stpcpy.h (stpcpy): Use ANSI C function declarations.
1868         * strcase.h (strcasecmp, strncasecmp): Likewise.
1869
1870 2003-01-14  Jim Meyering  <jim@meyering.net>
1871
1872         * same.c (same_name): Tweak a comment.
1873
1874 2003-01-11  Bruno Haible  <bruno@clisp.org>
1875
1876         * same.c (same_name): Reorder tests so as to avoid calling stat()
1877         when a string comparison is sufficient.
1878
1879 2003-01-11  Bruno Haible  <bruno@clisp.org>
1880
1881         * readtokens.c (readtoken): Cast character to 'unsigned char', not
1882         'unsigned int'.
1883
1884 2003-01-11  Bruno Haible  <bruno@clisp.org>
1885
1886         * hash-pjw.c: Add comment about low quality of this function.
1887
1888 2003-01-12  Paul Eggert  <eggert@twinsun.com>
1889
1890         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
1891         to avoid collisions with libcurses and libreadline.
1892
1893         * Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
1894         * getstr.h, getstr.c: Remove.
1895         * getline.c: Include "getline.h", to check interface.
1896         Move body of old getstr.c here: this defines MIN_CHUNK and
1897         declares getdelim2, which is renamed from getstr.
1898         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
1899
1900         * linebuffer.c (readlinebuffer): Renamed from readline.
1901         All uses changed.
1902         * linebuffer.h: Likewise.
1903         (readline): Remove backward-compatibility macro.
1904
1905 2003-01-12  Jim Meyering  <jim@meyering.net>
1906
1907         * makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
1908
1909 2003-01-10  Bruno Haible  <bruno@clisp.org>
1910
1911         * alloca_.h: New file.
1912         * getdate.y: Unconditionally include alloca.h.
1913         * makepath.c: Likewise.
1914         * setenv.c: Likewise.
1915         * userspec.c: Likewise.
1916
1917 2003-01-09  Bruno Haible  <bruno@clisp.org>
1918
1919         * stdbool.h.in: New file.
1920
1921 2003-01-08  Bruno Haible  <bruno@clisp.org>
1922
1923         * safe-read.c: Include specification header first, to ensure its
1924         selfcontainedness.
1925         * full-write.c: Likewise.
1926
1927 2003-01-08  Jim Meyering  <jim@meyering.net>
1928
1929         * full-write.c: Undefine and define-away `const' after inclusion
1930         of errno.h, not before.  Suggestion from Bruno Haible.
1931
1932 2003-01-07  Jim Meyering  <jim@meyering.net>
1933
1934         * full-write.c: Rework so that it may serve to define full_read, too.
1935         * full-read.c: Simply #define FULL_READ and include full-write.c.
1936
1937 2003-01-06  Jim Meyering  <jim@meyering.net>
1938
1939         * version-etc.c: Update year in translatable copyright string.
1940
1941 2002-12-25  Bruno Haible  <bruno@clisp.org>
1942
1943         * strtoimax.c: Include <stdint.h> as an alternative to <inttypes.h>.
1944         * xstrtol.h: Likewise.
1945         * xstrtoimax.c: Likewise.
1946         * xstrtoumax.c: Likewise.
1947         * human.h: Likewise.
1948
1949         * tempname.c: Include <inttypes.h> too. Avoids a compilation error
1950         on systems that have <inttypes.h> but not <stdint.h>.
1951
1952 2002-12-31  Paul Eggert  <eggert@twinsun.com>
1953
1954         * memcoll.c (memcoll): Fall back on a simple algorithm using
1955         memcmp if strcoll doesn't work.
1956
1957 2002-12-23  Bruno Haible  <bruno@clisp.org>
1958
1959         * localcharset.h: New file.
1960         * localcharset.c: Include it.
1961         * unicodeio.c: Likewise.
1962
1963 2002-12-22  Bruno Haible  <bruno@clisp.org>
1964
1965         * utime.c (utime_null): No need to call ftruncate if the file was
1966         nonempty.
1967
1968 2002-12-23  Bruno Haible  <bruno@clisp.org>
1969
1970         * memcoll.c (STRCOLL): New macro.
1971         (memcoll): Use it.
1972
1973 2002-12-22  Bruno Haible  <bruno@clisp.org>
1974
1975         * getstr.h (getstr): Define, to avoid clash with libcurses.
1976         * linebuffer.h (readline): Define, to avoid clash with libreadline.
1977
1978 2002-12-22  Bruno Haible  <bruno@clisp.org>
1979
1980         * getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not HAVE_TM_ZONE.
1981
1982 2002-12-23  Bruno Haible  <bruno@clisp.org>
1983
1984         * getline.h: Include <stddef.h>, for size_t.
1985
1986         * unicodeio.h: Include <stddef.h>, for size_t.
1987         * unicodeio.c: Don't include <stddef.h>.
1988
1989 2002-12-17  Bruno Haible  <bruno@clisp.org>
1990
1991         * canon-host.c (strdup): Remove unused declaration.
1992
1993         * fsusage.c: Include full_read.h.
1994         (get_fs_usage): Use full_read instead of safe_read.
1995
1996         * utime.c (utime_null): Use SAFE_READ_ERROR.
1997
1998 2002-12-11  Bruno Haible  <bruno@clisp.org>
1999
2000         * setenv.h: Rewritten to cope with systems that have setenv() but not
2001         unsetenv().
2002         * setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
2003         modifications:
2004
2005         2002-12-11  Bruno Haible  <bruno@clisp.org>
2006
2007                 * setenv.c (alloca): Fall back to malloc.
2008                 (freea): New macro.
2009                 (setenv): Use freea() to free memory allocated with alloca().
2010
2011         2002-11-13  Bruno Haible  <bruno@clisp.org>
2012
2013                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
2014                 function declarations.
2015                 * unsetenv.c (unsetenv): Likewise.
2016
2017         2002-03-04  Bruno Haible  <bruno@clisp.org>
2018
2019                 Portability to AIX 4.3.3.
2020                 * unsetenv.c: New file, extracted from setenv.c.
2021                 * setenv.c: Move the unsetenv() function to unsetenv.c.
2022
2023         2001-12-20  Bruno Haible  <bruno@clisp.org>
2024
2025                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
2026                 use malloc instead. For SunOS 4.
2027
2028         2001-12-11  Bruno Haible  <bruno@clisp.org>
2029
2030                 * setenv.c: Declare alloca.
2031                 (compar_fn_t): New typedef.
2032                 (KNOWN_VALUE, STORE_VALUE): Use it.
2033
2034         * Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
2035         setenv.h.
2036
2037 2002-12-10  Paul Eggert  <eggert@twinsun.com>
2038
2039         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
2040         * exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
2041         Choose values that are less likely to collide with system fnmatch
2042         options.
2043         * exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
2044         defined (e.g., a pure POSIX system).
2045         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
2046         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
2047
2048 2002-12-06  Jim Meyering  <jim@meyering.net>
2049
2050         * error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
2051
2052         Merge in changes from libc's misc/error.c, in preparation
2053         for the merge of gnulib's changes back into libc.
2054
2055         * error.c (_): Define only if not already defined.
2056         Move definition to follow all #include directives.
2057         Include unlocked-io.h only if !_LIBC.
2058         [_LIBC]: Include <libio/libioP.h>.
2059         [USE_IN_LIBIO]: Include <libio/iolibio.h>
2060         (fflush): Tweak definition to use INTUSE.
2061         (putc): Define.
2062
2063 2002-12-05  Paul Eggert  <eggert@twinsun.com>
2064
2065         * alloca.c [defined emacs]: Include "lisp.h".
2066         (xalloc_die) [defined emacs]: New macro.
2067         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
2068         [! defined emacs]: Include <xalloc.h>.
2069         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
2070         (pointer): Typedef to POINTER_TYPE *.
2071         (malloc): Remove decl; we now always use xmalloc.
2072         (alloca): Use old-style definition, since Emacs needs this.
2073         Check for arithmetic overflow when computing combined size.
2074
2075 2002-12-04  Paul Eggert  <eggert@twinsun.com>
2076
2077         Do not generate unlocked-io.h automatically, since it's easier to
2078         maintain it by hand.
2079
2080         * unlocked-io.h: New file, from GNU diffutils,
2081         but with proper copyright notice and attribution.
2082         * gen-uio: Remove.
2083         * Makefile.am: Add copyright notice.
2084         (libfetish_a_SOURCES): Add unlocked-io.h.
2085         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
2086         (DISTCLEANFILES, io_functions): Remove macros.
2087         (EXTRA_DIST): Remove gen_uio.
2088         (unlocked-io.h): Remove rule.
2089
2090 2002-12-04  Jim Meyering  <jim@meyering.net>
2091
2092         Reflect the fact that stat.c and lstat.c are no longer generated.
2093         * Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
2094         (DISTCLEANFILES): Likewise.
2095         (EXTRA_DIST): Likewise.
2096         (all_local): Don't depend on stat.c or lstat.c.
2097         (stat.c, lstat.c): Remove rules.
2098         (EXTRA_DIST): Remove xstat.in.
2099
2100         * xstat.in: Remove file.  Contents moved into stat.c.
2101         * stat.c: New file.  Contents mostly from xstat.in.
2102         * stat.c: Rework so that it may serve to define rpl_lstat, too.
2103         * lstat.c: New file. Simply #define LSTAT and include stat.c.
2104
2105         * safe-read.c: Rework so that it may serve to define safe_write, too.
2106         * safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
2107
2108 2002-12-03  Jim Meyering  <jim@meyering.net>
2109
2110         * safe-read.c, safe-write.c: Change variable names and comments, but
2111         not semantics, to minimize the differences between these two files.
2112         (safe_read): Change comment to mention SAFE_READ_ERROR.
2113
2114         * safe-read.c (IS_EINTR): Define.
2115         (safe_read): Use IS_EINTR in place of in-function cpp directives.
2116
2117 2002-12-02  Bruno Haible  <bruno@clisp.org>
2118
2119         * safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
2120         Define, taken from safe-read.c.
2121         (INT_MAX): Provide fallback.
2122         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
2123         * safe-write.h (SAFE_WRITE_ERROR): Define.
2124
2125         * safe-read.c (EINTR): Remove definition.
2126         (safe_read): Don't use EINTR if it is absent.
2127
2128 2002-12-02  Jim Meyering  <jim@meyering.net>
2129
2130         * safe-read.c (EINTR): Define.
2131         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
2132         (INT_MAX): Provide fallback.
2133         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
2134
2135         * safe-read.h (SAFE_READ_ERROR): Define.
2136
2137 2002-12-01  Jim Meyering  <jim@meyering.net>
2138
2139         * safe-read.c: (safe_read): Also exit the loop when read returns zero.
2140         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
2141
2142 2002-11-27  Paul Eggert  <eggert@twinsun.com>
2143
2144         * hash.c (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
2145         hash_rehash): Replace `if (limit <= value) abort ();' with
2146         `if (! (value < limit)) abort ();', for readability.
2147
2148 2002-11-26    <karl@gnu.org>
2149
2150         * strdup.c: copy from libc again, with jim's ok.
2151         * .cppi-disable: re-add strdup.c
2152
2153 2002-11-25    <karl@gnu.org>
2154
2155         * strtoll.c: copy from libc, meaning we now #include <strtol.c>
2156         instead of "strtol.c".
2157
2158 2002-11-25  Jim Meyering  <jim@meyering.net>
2159
2160         * mktime.c: Sync from libc, now that it has the latest fix.
2161
2162 2002-11-24    <karl@gnu.org>
2163
2164         * error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
2165         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
2166
2167 2002-11-24  Jim Meyering  <jim@meyering.net>
2168
2169         Update from coreutils:
2170
2171         * mktime.c: Merge in changes from libc.
2172
2173         Avoid a link-time failure on some Linux systems.
2174         * mktime.c (STATIC): Define to be empty (_LIBC) or `static' (otherwise).
2175         (__mon_yday): Declare with the STATIC attribute.
2176         (__mktime_internal): Likewise.
2177         Based on a report from Greg Schafer.
2178
2179 2002-11-23  Jim Meyering  <jim@meyering.net>
2180
2181         * sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
2182         Use `unsigned', not `int', as type of index.
2183
2184         * xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
2185
2186         * fsusage.c: Remove unneeded parentheses around operands of `defined'.
2187
2188 2002-11-22  Paul Eggert  <eggert@twinsun.com>
2189
2190         * hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
2191         hint that one should use `if (! x) abort ();' rather than `assert
2192         (x);', and anyway it's one less thing to worry about configuring.
2193         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
2194         hash_rehash, hash_insert): Use abort rather than assert.
2195
2196 2002-11-22  Paul Eggert  <eggert@twinsun.com>
2197
2198         * quotearg.h: Allow multiple inclusion by surrounding with
2199         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
2200         so that we can be included first.
2201         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
2202         * quotearg.c: Include quotearg.h immediately after config.h.
2203         No need to include stddef.h or sys/types.h any more.
2204         Surround local include files with "", not "<>".
2205         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
2206         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
2207         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
2208         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
2209         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
2210         (ISPRINT): Remove; no longer needed now that we assume C89.
2211
2212         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
2213         Preserve errno.
2214
2215         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
2216         quotearg_char): Use SIZE_MAX rather than
2217         (size_t) -1 when we are talking about "infinity".
2218
2219         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
2220
2221 2002-11-22  Bruno Haible  <bruno@clisp.org>
2222
2223         * safe-read.h: Assume C89. Add comments.
2224         (safe_read): Change return type to size_t.
2225         * safe-read.c (safe_read): Change return type to size_t. Handle byte
2226         counts > SSIZE_MAX correctly.
2227         * safe-write.h: New file.
2228         * safe-write.c: New file.
2229         * full-read.h: New file.
2230         * full-read.c: New file.
2231         * full-write.h: Assume C89. Add comments.
2232         * full-write.c: Include safe-write.h.
2233         (full_write): Rewritten to use safe_write.
2234         Suggested by Jim Meyering and Paul Eggert.
2235
2236 2002-11-21  Bruno Haible  <bruno@clisp.org>
2237
2238         Remove case insensitive option matching.
2239         * argmatch.h (argcasematch): Remove declaration.
2240         (ARGCASEMATCH): Remove macro.
2241         (__xargmatch_internal): Remove case_sensitive argument.
2242         (XARGMATCH): Update.
2243         (XARGCASEMATCH): Remove macro.
2244         * argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
2245         case_sensitive argument.
2246         (argcasematch): Remove function.
2247         (__xargmatch_internal): Remove case_sensitive argument.
2248         (main): Use XARGMATCH instead of XARGCASEMATCH.
2249
2250         * xmalloc.c: Change compile-time error message. Add comment about
2251         required autoconf version.
2252
2253 2002-11-21  Jim Meyering  <jim@meyering.net>
2254
2255         * strdup.c (strdup): Tweak comment and initial #if/#include.
2256
2257         Merge in changes from the coreutils.
2258
2259         2002-09-25  Paul Eggert  <eggert@twinsun.com>
2260         * fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include <stdint.h>.
2261         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
2262         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
2263         int.  Work more efficiently if X is the same width as uintmax_t.
2264         Do not compare X to -1, to avoid bogus compiler warning.
2265         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
2266         Don't assume that f_frsize and f_bsize are the same type.
2267
2268         * mountlist.c: #undef MNT_IGNORE before defining it, to avoid warning
2269         on FreeBSD.
2270
2271         * makepath.c (make_path): Restore umask *before* creating the final
2272         component.
2273         (make_path): Minor reformatting.
2274
2275         * xmalloc.c: Adjust to work with new autoconf macros, AC_FUNC_MALLOC
2276         and AC_FUNC_REALLOC: test #ifndef HAVE_MALLOC/HAVE_REALLOC.
2277
2278         * mountlist.h (ME_DUMMY): Don't count entries of type `auto' as dummy
2279         ones.  At least on GNU/Linux systems, `auto' means something else.
2280         From Michael Stone.
2281
2282 2002-11-20  Paul Eggert  <eggert@twinsun.com>
2283
2284         Merge argmatch cleanups from Bison.  Assume C89.
2285
2286         * argmatch.c: Include config.h here, not in argmatch.h.
2287         Include stdlib.h, for EXIT_FAILURE.
2288         Always include <string.h>, since we assume C89.
2289         (EXIT_FAILURE): Remove pre-C89 bug workaround.
2290         * argmatch.h: Do not include <config.h> or <sys/types.h>.
2291         Include <stddef.h> instead, since it's all we need for size_t.
2292         (PARAMS): Remove.  All uses removed.
2293         (ARRAY_CARDINALITY): Do not bother to #undef.
2294         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
2295         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
2296         Remove unnecessary parentheses.
2297         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
2298         Insert necessary parentheses.
2299         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
2300         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
2301
2302 2002-11-19  Bruno Haible  <bruno@clisp.org>
2303
2304         * mbswidth.c: Include mbswidth.h right at the beginning.
2305         * mbswidth.h: Include <stddef.h>, for size_t.
2306
2307         * mbswidth.h (PARAMS): Remove macro.
2308         (mbswidth, mbsnwidth): Use ANSI C function declarations.
2309         * mbswidth.c (mbswidth, mbsnwidth): Likewise.
2310
2311         * gcd.h (PARAMS): Remove macro.
2312         (gcd): Use ANSI C function declarations.
2313         * gcd.c (gcd): Likewise.
2314
2315 2002-11-15  Bruno Haible  <bruno@clisp.org>
2316
2317         * strcspn.c: Include <stddef.h>.
2318         (strcspn): Use ANSI C function declaration. Change return type to
2319         size_t. Use NULL.
2320         * strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
2321         (strpbrk): Use NULL.
2322         * strpbrk.h (PARAMS): Remove macro.
2323         (strpbrk): Use ANSI C function declaration.
2324         * strstr.c: Don't include <sys/types.h>.
2325         * strstr.h (PARAMS): Remove macro.
2326         (strstr): Use ANSI C function declarations.
2327
2328 2002-11-06  Bruno Haible  <bruno@clisp.org>
2329
2330         * gcd.h (gcd): Change argument type to 'unsigned long'.
2331         * gcd.c (gcd): Likewise.
2332
2333 2002-11-05  Bruno Haible  <bruno@clisp.org>
2334
2335         * gcd.h: New file, from gettext-0.11.5.
2336         * gcd.c: New file, from gettext-0.11.5.
2337
2338 2002-11-05  Bruno Haible  <bruno@clisp.org>
2339
2340         * error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
2341         * getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
2342         * obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
2343         * regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
2344
2345         * argmatch.c: Include gettext.h instead of <locale.h> and <libintl.h>.
2346         * makepath.c: Include gettext.h instead of <locale.h> and <libintl.h>.
2347
2348         * closeout.c: Include gettext.h instead of <libintl.h>.
2349         * human.c: Include gettext.h instead of <libintl.h>.
2350         * quotearg.c: Include gettext.h instead of <libintl.h>.
2351         * rpmatch.c: Include gettext.h instead of <libintl.h>.
2352         * unicodeio.c: Include gettext.h instead of <libintl.h>.
2353         * userspec.c: Include gettext.h instead of <libintl.h>.
2354         * version-etc.c: Include gettext.h instead of <libintl.h>.
2355         * xmalloc.c: Include gettext.h instead of <libintl.h>.
2356         (textdomain): Remove definition.
2357         * xmemcoll.c: Include gettext.h instead of <libintl.h>.
2358
2359         * long-options.c: Remove include of <libintl.h> and definition of _.
2360         * same.c: Remove include of <libintl.h> and definition of _.
2361
2362 2002-11-04  Bruno Haible  <bruno@clisp.org>
2363
2364         * stpcpy.h: New file, from GNU gettext-0.11.5.
2365         * strcase.h: New file, from GNU gettext-0.11.5.
2366         * strpbrk.h: New file, from GNU gettext-0.11.5.
2367         * strstr.h: New file, from GNU gettext-0.11.5.
2368         * xgetcwd.h: New file, from GNU gettext-0.11.5.
2369
2370 2002-05-09  Bruno Haible  <bruno@clisp.org>
2371
2372         * config.charset: Update for newest glibc. Add canonical names
2373         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
2374
2375 2002-05-09  Bruno Haible  <bruno@clisp.org>
2376
2377         * localcharset.c (get_charset_aliases): Add more Windows specific
2378         aliases.
2379
2380 2002-05-08  Owen Taylor  <otaylor@redhat.com>
2381
2382         * config.charset: A few additions for Solaris.
2383
2384 2001-12-05  Bruno Haible  <bruno@clisp.org>
2385
2386         * localcharset.c (locale_charset): Don't return an empty string.
2387
2388 2001-10-23  Bruno Haible  <haible@clisp.cons.org>
2389
2390         * config.charset: msdos in uk_UA uses CP1125.
2391
2392 2001-08-05  Bruno Haible  <haible@clisp.cons.org>
2393
2394         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
2395         * localcharset.c (locale_charset): Declare as extern "C".
2396
2397 2002-02-15  Bruno Haible  <bruno@clisp.org>
2398
2399         * config.charset [msdosdjgpp]: For Russian, use CP866.
2400
2401 2002-02-11  Bruno Haible  <bruno@clisp.org>
2402
2403         * config.charset: Add support for NetBSD.
2404
2405 2002-09-25    <karl@gnu.org>
2406
2407         * strdup.c: copy from libc/string (via ../config/srclist*).
2408         * getopt*: copy from libc/posix.
2409         * gettext.h: copy from gettext.
2410         * .cppi-disable: add strdup.c, gettext.h.
2411
2412 2002-07-01  Jim Meyering  <meyering@lucent.com>
2413
2414         * c-stack.c: Include sys/time.h.
2415         From Volker Borchert.
2416
2417 2002-06-11  Paul Eggert  <eggert@twinsun.com>
2418
2419         * fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
2420         New macro.  Use it uniformly instead of
2421         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
2422         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
2423         reported by Vin Shelton.
2424
2425 2002-06-22  Jim Meyering  <meyering@lucent.com>
2426
2427         * fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
2428         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
2429
2430 2002-06-22  Paul Eggert  <eggert@twinsun.com>
2431
2432         * c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
2433         Do not assume SA_SIGINFO behavior.
2434         Bug reported by Jim Meyering on NetBSD 1.5.2.
2435
2436 2002-06-22  Jim Meyering  <meyering@lucent.com>
2437
2438         * c-stack.c, c-stack.h: New files, from diffutils-2.8.2.
2439
2440         * exitfail.c, exitfail.h: Likewise.
2441         * Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
2442
2443         * Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
2444         of fnmatch.h.
2445         (EXTRA_DIST): Add fnmatch_loop.c.
2446         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
2447
2448         * fnmatch_loop.c: New file, from diffutils-2.8.2.
2449         * fnmatch.c: Update from diffutils-2.8.2.
2450         * fnmatch_.h: New file.  From diffutils-2.8.2.
2451         * fnmatch.h: Remove file.
2452
2453 2002-06-18  Paul Eggert  <eggert@twinsun.com>
2454
2455         * file-type.h: Report an error if neither S_ISREG nor
2456         S_IFREG is defined, instead of using a test specific to glibc
2457         2.2.  This should be safe, since POSIX requires S_ISREG and
2458         Unix Version 7 had S_IFREG.  We don't need to check for
2459         <sys/types.h> since we don't use any symbols that it defines.
2460
2461 2002-06-15  Jim Meyering  <meyering@lucent.com>
2462
2463         * file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
2464         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
2465         have been included before this file.
2466
2467 2002-06-13  Richard Dawe  <richdawe@bigfoot.com>
2468
2469         * Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than $@-t,
2470         so that each temporary file name is unique and valid in the first
2471         8 characters, for operation under DOS.
2472
2473 2002-06-15  Jim Meyering  <meyering@lucent.com>
2474
2475         Work even with DJGPP 2.03, which lacks support for symlinks.
2476         From Richard Dawe.
2477         * xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
2478         is defined.
2479         * lchown.c (S_ISLNK): Likewise.
2480
2481 2002-06-14  Jim Meyering  <meyering@lucent.com>
2482
2483         * file-type.h: Use the version from diffutils-2.8.2.
2484         * file-type.c: Likewise.
2485
2486 2002-05-27  Jim Meyering  <meyering@lucent.com>
2487
2488         Fix a problem seen only on nonconforming systems whereby ls.c's
2489         use of localtime, and then of gettimeofday would cause trouble:
2490         the localtime call used to initialize rpl_gettimeofday's save
2491         mechanism would clobber ls's current local time information so
2492         that in any long listing the first file would always be listed
2493         with date 1970-01-01.  Analysis by Volker Borchert.
2494
2495         * gettimeofday.c (localtime): Undefine.
2496         (rpl_localtime): New function.
2497
2498 2002-05-22  Jim Meyering  <meyering@lucent.com>
2499
2500         * Makefile.am (libfetish_a_SOURCES): Add file-type.c and file-type.h.
2501         * file-type.h: New file.
2502         * file-type.c (file_type): New file/function.  Extracted from diffutils.
2503
2504 2002-04-29  Paul Eggert  <eggert@twinsun.com>
2505
2506         * hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
2507
2508 2002-04-28  Paul Eggert  <eggert@twinsun.com>
2509
2510         * sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
2511         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
2512         of 127, since 64 is the largest conceivable number for ancient
2513         nonstandard hosts.
2514         * sig2str.c: Do not include <sys/wait.h>; no longer needed.
2515
2516 2002-04-28  Jim Meyering  <meyering@lucent.com>
2517
2518         * sig2str.c (WTERMSIG): Remove definition (unused).
2519
2520 2002-04-28  Paul Eggert  <eggert@twinsun.com>
2521
2522         * sig2str.h, sig2str.c: New files.
2523         * Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
2524
2525 2002-04-24  Jim Meyering  <meyering@lucent.com>
2526
2527         * gettext.h: New file, from Gettext.
2528         * Makefile.am (INCLUDES): Remove -I../intl.
2529         (libfetish_a_SOURCES): Add gettext.h.
2530
2531 2002-04-16  Jim Meyering  <meyering@lucent.com>
2532
2533         * readutmp.h (UT_TYPE): Remove definition (now in who.c).
2534         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
2535         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
2536
2537 2002-04-12  Jim Meyering  <meyering@lucent.com>
2538
2539         * dirfd.h (dirfd): Elide prototype if dirfd is a macro.
2540
2541 2002-03-10  Jim Meyering  <meyering@lucent.com>
2542
2543         * makepath.c (make_path): Remove a comma from a diagnostic.
2544         Suggestion from Santiago Vila.
2545
2546 2002-03-08  Jim Meyering  <meyering@lucent.com>
2547
2548         * rename.c: Mention that this wrapper is needed also on
2549         mips-dec-ultrix4.4 systems.
2550
2551 2002-03-02  Jim Meyering  <meyering@lucent.com>
2552
2553         * gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
2554         not HAVE_CLOCK_SETTIME.
2555
2556 2002-02-27  Paul Eggert  <eggert@twinsun.com>
2557
2558         * nanosleep.h: Rename to....
2559         * timespec.h: New name for nanosleep.h.  All uses changed.
2560
2561         * gettime.c: New file.
2562         * settime.c: New file.
2563         * stime.c: Remove.
2564
2565         * Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
2566         timespec.h.  Remove nanosleep.h.
2567
2568 2002-02-25  Paul Eggert  <eggert@twinsun.com>
2569
2570         * acl.c, acl.h: New files.
2571         * Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
2572
2573 2002-02-24  Jim Meyering  <meyering@lucent.com>
2574
2575         * strnlen.c (strnlen): Define-away/undef so that an inconsistent
2576         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
2577         cause trouble.  Reported by Nelson Beebe.
2578
2579 2002-02-23  Paul Eggert  <eggert@twinsun.com>
2580
2581         * path-concat.c (xpath_concat): Reorder code to pacify
2582         compilers that don't know that xalloc_die never returns.
2583
2584 2002-02-20  Jim Meyering  <meyering@lucent.com>
2585
2586         * getdate.c: Regenerate using bison-1.33.
2587
2588 2002-02-15  Paul Eggert  <eggert@twinsun.com>
2589
2590         * posixver.c, posixver.h: New files.
2591         * Makefile.am (libfetish_a_SOURCES): Add them.
2592
2593 2002-02-02  Paul Eggert  <eggert@twinsun.com>
2594             Bruno Haible  <bruno@clisp.org>
2595
2596         * unicodeio.h (print_unicode_char): Add exit_on_error argument.
2597         (fwrite_success_callback): New declaration.
2598         * unicodeio.c (unicode_to_mb): New function, extracted from
2599         print_unicode_char. Call failure callback instead of error.
2600         (fwrite_success_callback): New function.
2601         (exit_failure_callback): New function.
2602         (fallback_failure_callback): New function.
2603         (print_unicode_char): Call unicode_to_mb.
2604
2605 2002-01-26  Jim Meyering  <meyering@lucent.com>
2606
2607         * Makefile.am (getdate$U.o): Depend on unlocked-io.h.
2608
2609 2002-01-22  Jim Meyering  <meyering@lucent.com>
2610
2611         * Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
2612         Otherwise, some versions of automake would omit the rule that makes
2613         Makefile from Makefile.in.
2614
2615 2001-01-21  Paul Eggert  <eggert@twinsun.com>
2616
2617         * xmemcoll.h, xmemcoll.c: New files.
2618         * Makefile.am (libfetish_a_SOURCES): Add them.
2619         * memcoll.c: Include errno.h, and declare errno if not defined.
2620         (memcoll): Set errno to zero if there is no error.
2621
2622         * quotearg.c (quotearg_buffer_restyled):
2623         Fix bug with quoting buffers containing NUL when backslashing escapes.
2624         This bug was exposed by the other changes in this patch.
2625         (quotearg_n_options): New arg ARGSIZE.
2626         All callers changed.
2627         (quoting_options_from_style): New function.
2628         (quotearg_n_style): Use it.
2629         (quotearg_n_style_mem): New function.
2630
2631         * quotearg.h (quotearg_n_style_mem): New function.
2632
2633 2002-01-16  Jim Meyering  <meyering@lucent.com>
2634
2635         * getdate.y: Add three semicolons, each just before a closing brace.
2636         Bison (as of version 1.31) no longer papers over that mistake.
2637
2638 2002-02-14  Paul Eggert  <eggert@twinsun.com>
2639
2640         * backupfile.c (ISDIGIT): Comment fix.
2641         * getdate.y (ISDIGIT): Likewise.
2642         * posixtm.c (ISDIGIT, year): Likewise.
2643         * strverscmp.c (ISDIGIT): Likewise.
2644         * userspec.c (ISDIGIT): Likewise.
2645
2646 2002-01-05  Jim Meyering  <meyering@lucent.com>
2647
2648         * version-etc.c (version_etc_copyright): Update copyright year.
2649
2650 2001-01-19  Paul Eggert  <eggert@twinsun.com>
2651
2652         * closeout.c (close_stdout_status): If ferror (stdout), do
2653         not silently exit merely because the output buffer happens to
2654         have nothing pending.
2655
2656 2001-12-18  Paul Eggert  <eggert@twinsun.com>
2657
2658         See the big note in ../ChangeLog.
2659         * human.c (suffixes): Prefer K to k for 1024.
2660         (generate_suffix_backwards): New function.
2661         (human_readable_inexact): Use it.
2662         * xstrtol.c (__xstrtol): If there is no number but there
2663         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
2664         Accept 'K' as well as 'k'.
2665
2666 2001-12-15  Jim Meyering  <meyering@lucent.com>
2667
2668         * regex.h (__restrict_arr): Update from libc.
2669
2670         * mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
2671         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
2672         (STREQ): Define.
2673
2674 2001-12-10  Jim Meyering  <meyering@lucent.com>
2675
2676         * linebuffer.c: Remove explicit declarations of xmalloc and xrealloc,
2677         Instead, include "xalloc.h".
2678         (initbuffer): Don't cast xmalloc return value to char*.
2679         (readline): Reword comment.
2680         Don't cast xrealloc return value to char*
2681         Return NULL, not 0.
2682
2683 2001-12-09  Jim Meyering  <meyering@lucent.com>
2684
2685         * modechange.c (mode_compile): Add cast to avoid pedantic warning about
2686         `signed and unsigned type in conditional expression'.
2687         * posixtm.c (posix_time_parse): Likewise.
2688
2689         * xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
2690
2691         * readtokens.c (readtoken): Declare an index to be of type unsigned
2692         to avoid a pedantic warning.
2693
2694         * getstr.c: Don't include assert.h.
2695         (getstr): Remove warning-evoking assertions.
2696         Return -1 if offset parameter is out of bounds.
2697         Change the type of a local from int to size_t.
2698
2699         * strftime.c (my_strftime_localtime_r): Include this function
2700         definition in the `#if ! HAVE_TM_GMTOFF' block.
2701
2702         * xgethostname.c: Remove declarations of xmalloc and xrealloc.
2703         Include xalloc.h instead.
2704
2705 2001-12-02  Jim Meyering  <meyering@lucent.com>
2706
2707         * tempname.c: Don't declare getenv, thus reverting the change of
2708         2001-11-18.  It's no longer necessary, now that stdlib.h is always
2709         included.
2710
2711         * regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
2712         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
2713
2714 2001-11-30  Akim Demaille  <akim@epita.fr>
2715
2716         * xstrdup.c: Include xalloc.h, so that xstrdup is declared
2717         before being defined.
2718
2719 2001-11-27  Paul Eggert  <eggert@twinsun.com>
2720
2721         * quotearg.h (quotearg_n, quotearg_n_style):
2722         First arg is int, not unsigned.
2723         * quotearg.c (quotearg_n, quotearg_n_style): Likewise.
2724         (SIZE_MAX, UINT_MAX): New macros.
2725         (quotearg_n_options): Abort if N is negative.
2726         Avoid overflow check on hosts where size_t is 64 bits and int
2727         is 32 bits, as overflow is impossible there.
2728         Fix off-by-one typo that caused unnecessary reallocation.
2729
2730 2001-11-27  Jim Meyering  <meyering@lucent.com>
2731
2732         * tempname.c: Merge with version from libc.
2733         * regex.c: Likewise.
2734
2735         * tempname.c: Include stdlib.h unconditionally.  On some old systems
2736         for which STDC_HEADERS is 0, it was not included, resulting in a
2737         warning about an integer-to-pointer conversion problem with getenv.
2738         Reported by Volker Borchert.
2739
2740 2001-11-26  Jim Meyering  <meyering@lucent.com>
2741
2742         * gtod.h: Remove file.
2743         * Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
2744         * gettimeofday.c: Don't include gtod.h.
2745         (GTOD_init): Remove function.
2746         (rpl_gettimeofday): Do its job here instead, rather than aborting.
2747         Suggestion from Volker Borchert.
2748
2749 2001-11-23  Jim Meyering  <meyering@lucent.com>
2750
2751         * hash.h (struct hash_table): Don't define here.  Merely declare it.
2752         * hash.c (struct hash_table): Define it here instead.
2753
2754 2001-11-22  Jim Meyering  <meyering@lucent.com>
2755
2756         * hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
2757
2758 2001-11-18  Paul Eggert  <eggert@twinsun.com>
2759
2760         * tempname.c (TMP_MAX): Remove; no longer needed.
2761         (TEMPORARIES): New macro.
2762         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
2763         removes an artificial limitation (e.g. HP-UX 10.20, where
2764         TMP_MAX is 17576).
2765
2766 2001-11-18  Jim Meyering  <meyering@lucent.com>
2767
2768         * tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
2769         on SunOS 4.
2770
2771         * Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
2772         files will be created before anything else.
2773
2774 2001-11-17  Jim Meyering  <meyering@lucent.com>
2775
2776         * modechange.c (mode_adjust): Fix error introduced on 1999-04-26
2777         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
2778         rather than group writable.  Patch by Juan F. Codagnone.
2779
2780         * readtokens.c: Remove explicit declarations of xmalloc and xrealloc,
2781         Instead, include "xalloc.h".
2782
2783         * mountlist.c: Include unlocked-io.h after all system headers.
2784         Remove explicit declarations of xmalloc, xrealloc,
2785         and xstrdup.  Instead, include "xalloc.h".
2786
2787         * argmatch.c, closeout.c, error.c, exclude.c: Include unlocked-io.h.
2788         * fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c: Likewise.
2789         * mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
2790
2791         * regex.c, sha.c, version-etc.c, yesno.c: Likewise.
2792         Reported by Padraig Brady.
2793
2794         * mkstemp.c: #undef mkstemp.
2795         Include config.h.
2796         (rpl_mkstemp): Rename from mkstemp.
2797         Protoize.
2798
2799 2001-11-16  Jim Meyering  <meyering@lucent.com>
2800
2801         * physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
2802         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
2803         determine the amount of total physical memory, use pstat_getstatic.
2804         HPUX-11 doesn't define _SC_PHYS_PAGES.
2805         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
2806         If sysconf couldn't be used to determine the amount of available
2807         physical memory, use both pstat_getstatic and pstat_getdynamic.
2808         Based on a patch from Bob Proulx.
2809
2810 2001-11-05  Jim Meyering  <meyering@lucent.com>
2811
2812         * xstat.in (slash_aware_lstat): Correct a misleading comment.
2813
2814 2001-11-03  Jim Meyering  <meyering@lucent.com>
2815
2816         * argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
2817         in argmatch_to_argument call.
2818
2819         * dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
2820         argument.
2821
2822         * hash.c (hash_clear): Fix a bug that could lead to an infloop or
2823         e.g., a fault due to an attempt to free a NULL pointer.
2824
2825 2001-11-01  Jim Meyering  <meyering@lucent.com>
2826
2827         * dirfd.c, dirfd.h: New files.
2828         * Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
2829
2830         * hash.c (hash_print) [TESTING]: Clean up.
2831
2832 2001-10-22  Paul Eggert  <eggert@twinsun.com>
2833
2834         * hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
2835         to avoid a warning if -Wall.
2836
2837 2001-10-21  Paul Eggert  <eggert@twinsun.com>
2838
2839         * regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
2840
2841 2001-10-21  Jim Meyering  <meyering@lucent.com>
2842
2843         * obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
2844         this code would end up calling gettext even in packages built
2845         with --disable-nls.
2846         * getopt.c (_): Likewise.
2847         * regex.c (_): Likewise.
2848
2849 2001-10-20  Paul Eggert  <eggert@twinsun.com>
2850
2851         * error.c (strerror_r): Do not declare unless !_LIBC.
2852         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
2853         Use strerror_r that is only a macro, even if it is not a function.
2854         (strerror): Check for HAVE_DECL_STRERROR before declaring.
2855         (private_strerror): Use prototypes, not old-style function definition.
2856         (print_errno_message): New function.
2857         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
2858         char*-flavored one.
2859         (error_tail, error, error_at_line): Use it.
2860
2861 2001-10-11  Jim Meyering  <meyering@lucent.com>
2862
2863         * argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
2864         and quote_n (1, ... to avoid clobbering a buffer.
2865
2866 2001-10-05  Jim Meyering  <meyering@lucent.com>
2867
2868         * Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and hash-pjw.h.
2869         * hash-pjw.c: New file (factored out of fileutils' remove.c).
2870         * hash-pjw.h: New file.
2871
2872 2001-09-30  Jim Meyering  <meyering@lucent.com>
2873
2874         * mountlist.c [MOUNTED_GETFSSTAT]:
2875         Include <sys/ucred.h>, for Apple Darwin.
2876         Include sys/mount.h and sys/fs_types.h only if available.
2877         (FS_TYPE): Define.
2878         (read_filesystem_list): Use FS_TYPE.
2879
2880 2001-09-29  Paul Eggert  <eggert@twinsun.com>
2881
2882         * exclude.c (excluded_filename): 0 -> false, since it's
2883         a boolean context.
2884
2885 2001-09-28  Paul Eggert  <eggert@twinsun.com>
2886
2887         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
2888         #defines strtoimax.  Also treat the other strto* functions
2889         like strtoimax.
2890
2891         * xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
2892         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
2893         (strtoimax, strtoumax): Do not declare if already defined as a macro.
2894
2895 2001-09-26  Jim Meyering  <meyering@lucent.com>
2896
2897         Most macros in unlocked-io.h had the wrong number of arguments.
2898         * gen-uio: New script.
2899         (USE_UNLOCKED_IO): Define to 1 if not already defined.
2900         * unlocked-io.hin: Remove file.
2901         * Makefile.am (unlocked-io.h): Rewrite to use a separate script,
2902         rather than trying to embed it here.
2903         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
2904         Reported by Padraig Brady.
2905
2906 2001-09-25  Volker Borchert  <bt@teknon.de>
2907
2908         * gettimeofday.c (rpl_gettimeofday): Declare local variable `result'.
2909
2910 2001-09-23  Jim Meyering  <meyering@lucent.com>
2911
2912         * mountlist.c: Remove useless parentheses in #if directives.
2913         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
2914         the deprecated MOUNTED symbol is no longer defined in mntent.h.
2915
2916 2001-09-22  Jim Meyering  <meyering@lucent.com>
2917
2918         * localcharset.c: Update from latest gettext.
2919         * config.charset: Likewise.
2920
2921 2001-09-20  Jim Meyering  <meyering@lucent.com>
2922
2923         * xstrtol.c (strtoimax): Guard declaration with
2924         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
2925         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
2926         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
2927         (strtoumax): Likewise, for completeness (it wasn't necessary).
2928
2929 2001-09-06  Paul Eggert  <eggert@twinsun.com>
2930
2931         * strtoimax.c (HAVE_LONG_LONG):
2932         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
2933         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
2934         to work around bug in IBM C compiler.
2935
2936 2001-09-16  Jim Meyering  <meyering@lucent.com>
2937
2938         * mkdir.c: New file.
2939
2940 2001-09-04  Paul Eggert  <eggert@twinsun.com>
2941
2942         * xgetcwd.c: Revert some of the previous change; intead,
2943         fix the HAVE_GETCWD_NULL code to behave more like the
2944         !HAVE_GETCWD_NULL code used to.
2945
2946         Include "xalloc.h".
2947         (xgetcwd): Do not return NULL when memory is exhausted; instead,
2948         invoke xalloc_die.
2949
2950 2001-09-04  Paul Eggert  <eggert@twinsun.com>
2951
2952         * xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
2953         Use ssize_t, not int, to store result of readlink.
2954         Check for ssize_t overflow as well as size_t overflow,
2955         as POSIX says the result of readlink is implementation-defined
2956         when ssize_t overflows.
2957         Remove unnecessary cast to char*.
2958         Use free+malloc instead of realloc, as the storage doesn't need
2959         to be preserved and it's clearer and can be more efficient that way.
2960         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
2961         * xreadlink.h (xreadlink): Update prototype.
2962
2963 2001-09-03  Paul Eggert  <eggert@twinsun.com>
2964
2965         * exclude.c (fnmatch_no_wildcards): Fix confusion between
2966         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
2967         spotted by Jim Meyering.
2968
2969 2001-09-03  Jim Meyering  <meyering@lucent.com>
2970
2971         * xreadlink.c (xreadlink): Preserve errno around `free' during failure.
2972
2973 2001-09-03  Paul Eggert  <eggert@twinsun.com>
2974
2975         * xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
2976         like the HAVE_GETCWD_NULL code.
2977         Include pathmax.h if not HAVE_GETCWD.
2978         Do not include xalloc.h.
2979         (INITIAL_BUFFER_SIZE): New symbol.
2980         Do not use xmalloc / xrealloc, since the caller is responsible for
2981         handling errors.  Preserve errno around `free' during failure.
2982         Do not overrun buffer when using getwd.
2983
2984 2001-09-03  Paul Eggert  <eggert@twinsun.com>
2985
2986         * xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
2987         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use getcwd (NULL, 0).
2988
2989 2001-09-02  Jim Meyering  <meyering@lucent.com>
2990
2991         * error.c: Update from GNU libc.
2992
2993 2001-09-01  Jim Meyering  <meyering@lucent.com>
2994
2995         * xreadlink.c: New file.
2996         * xreadlink.h: New file.
2997         * Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and xreadlink.h.
2998
2999         * regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
3000         doesn't conflict with sparc Solaris 7's definition in
3001         /usr/include/sys/int_types.h.
3002
3003         * exclude.c: Use `""', not `<>' to #include non-system header files.
3004         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
3005         and strncasecmp as r-values.  Unixware didn't have declarations.
3006
3007 2001-08-31  Jim Meyering  <meyering@lucent.com>
3008
3009         * xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
3010         Use an initial, malloc'd, buffer of length 128 rather than
3011         a statically allocated one of length 1024.
3012
3013 2001-08-30  Paul Eggert  <eggert@twinsun.com>
3014
3015         * xgetcwd.c: Don't include pathmax.h.
3016         Include stdlib.h and unistd.h if available.
3017         Include xalloc.h.
3018         (xmalloc, xstrdup, free): Remove decls.
3019         (xgetcwd): Don't assume sizes fit in unsigned.
3020         Check for overflow when computing sizes.
3021         Simplify reallocation code.
3022
3023 2001-08-28  Paul Eggert  <eggert@twinsun.com>
3024
3025         * Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
3026
3027         * strtoimax.c: Renamed from strtoxmax.c, removing the
3028         old strtoimax.c.
3029
3030         Also, make the following further changes to make this file's
3031         configuration more similar to that of strtol.c:
3032         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
3033         (strtoumax, uintmax_t, strtoull, strtol): Remove.
3034         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
3035         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
3036         changed to signed values.
3037
3038         And make the following changes as well:
3039         Fix copyright notice, as 1999 was missing.
3040         (verify): New macro.
3041         (strtoimax): Check sizes at compile-time, not run-time.
3042         Prefer strtol to strtoll if both work.
3043         (main): Remove; it was not that useful and was a pain to maintain.
3044
3045         * strtoumax.c: Include strtoimax.c, not strtouxmax.c.
3046
3047 2001-08-30  Paul Eggert  <eggert@twinsun.com>
3048
3049         * savedir.c (savedir): Remove size parameter, as POSIX says that
3050         a directory's st_size can have an arbitrary value, so the old
3051         usage could waste an arbitrary amount of memory.  All uses
3052         changed.
3053         * savedir.h: Update prototype.
3054
3055 2001-08-30  Paul Eggert  <eggert@twinsun.com>
3056
3057         * xstrtol.c (strtoimax): New decl.
3058
3059 2001-08-28  Paul Eggert  <eggert@twinsun.com>
3060
3061         * xstrtol.h: Add copyright notice.
3062         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
3063         LONGINT_INVALID_SUFFIX_CHAR.
3064
3065 2001-08-30  Paul Eggert  <eggert@twinsun.com>
3066
3067         * quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
3068         tm to be declared.
3069
3070 2001-08-30  Paul Eggert  <eggert@twinsun.com>
3071
3072         * hash.c: Remove '2001' from copyright notice.
3073
3074 2001-08-30  Paul Eggert  <eggert@twinsun.com>
3075
3076         * full-write.h: New file.
3077         * Makefile.am (libfetish_a_SOURCES): Add full-write.h.
3078         * full-write.c: Correct credits, as cccp.c no longer
3079         exists and anyway it was so heavily changed from the old cccp
3080         code as to be unrecognizable.  Include full-write.h.
3081         (full_write) Return size_t, with short writes meaning failure.
3082         All callers changed.  This fixes a bug with large buffers
3083         on 64-bit hosts.
3084         * utime.c: Include full-write.h.
3085
3086 2001-08-30  Paul Eggert  <eggert@twinsun.com>
3087
3088         Merge 'exclude' changes from tar 1.13.22.
3089         This fixes one or two unlikely storage allocation overflow bugs,
3090         but doesn't change user-visible behavior otherwise.
3091
3092 2001-08-30  Paul Eggert  <eggert@twinsun.com>
3093
3094         * exclude.c (bool): Declare, perhaps by including stdbool.h.
3095         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
3096         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
3097         Include if available.
3098         (<xalloc.h>): Include
3099         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
3100         (verify): New macro.  Use it to verify that EXCLUDE macros do not
3101         collide with FNM macros.
3102         (struct patopts): New struct.
3103         (struct exclude): Use it, as exclude patterns now come with options.
3104         (new_exclude): Support above changes.
3105         (new_exclude, add_exclude_file):
3106         Initial size must now be a power of two to simplify overflow checking.
3107         (free_exclude, fnmatch_no_wildcards): New function.
3108         (excluded_filename): No longer requires options arg, as the options
3109         are determined by add_exclude.  Now returns bool, not int.
3110         (excluded_filename, add_exclude):
3111         Add support for the fancy new exclusion options.
3112         (add_exclude, add_exclude_file): Now takes int options arg.
3113         Check for arithmetic overflow when computing sizes.
3114         (add_exclude_file): xrealloc might modify errno, so don't
3115         realloc until after errno might be used.
3116
3117         * exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
3118         New macros.
3119         (free_exclude): New decl.
3120         (add_exclude, add_exclude_file): Now takes int options arg.
3121         (excluded_filename): No longer requires options arg, as the options
3122         are determined by add_exclude.  Now returns bool, not int.
3123
3124 2001-08-30  Paul Eggert  <eggert@twinsun.com>
3125
3126         * alloca.c (alloca): Arg is of type size_t, not unsigned.
3127
3128 2001-08-27  Jim Meyering  <meyering@lucent.com>
3129
3130         * Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
3131
3132         * version-etc.c (N_): Remove definition.
3133         Revert most of last change.
3134         Instead, simply don't mark the `Copyright...' string for translation.
3135         Based on advice from Paul Eggert.
3136
3137         * strtoxmax.c: Tweak comment.
3138
3139 2001-08-26  Jim Meyering  <meyering@lucent.com>
3140
3141         * version-etc.c (version_etc_copyright_fmt): Replace literal year
3142         of copyright with `%s' so translators don't get an untranslated
3143         message in 2002.
3144         (COPYRIGHT_YEAR): Define.
3145         (version_etc): Use fprintf rather than fputs.
3146         Suggestion from Ulrich Drepper.
3147
3148         * Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
3149
3150         * strtoll.c: New file, from GNU libc.
3151         * xstrtoimax.c: New file.
3152
3153         * xstrtol.h: Add xstrtoimax.
3154         * strtoumax.c: New file.  Simply include "strtoumax.c".
3155         * strtoimax.c: New file.  Likewise, but first define STRTOUXMAX_SIGNED.
3156
3157         * strtoumax.c: Factor to work both for unsigned and signed types, ...
3158         * strtoxmax.c: ... then renamed to this.
3159
3160 2001-08-13  Paul Eggert  <eggert@twinsun.com>
3161
3162         * Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
3163         Port to Solaris 8, where 'sed' requires a space after the 'r'
3164         command, and where sh dislikes "$/".  Clean up the spacing a bit.
3165         Redirect output to $tmp just once.
3166
3167 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
3168
3169         * addext.c (<errno.h>): Include.
3170         (errno): Declare if not defined.
3171         (addext): Work correctly when pathconf returns -1 and leaves
3172         errno alone because there is no limit.  Also, work even if
3173         pathconf returns a value greater than SIZE_MAX.
3174
3175 2001-08-12  Jim Meyering  <meyering@lucent.com>
3176
3177         * xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
3178         Simply `return getcwd (NULL, 0);'.
3179         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
3180         Use 1300 as initial value for length, not PATH_MAX.
3181
3182         * pathmax.h: Clean up cpp syntax.
3183
3184 2001-08-12  Jim Meyering  <meyering@lucent.com>
3185
3186         * gettimeofday.c: New file.
3187         * gtod.h: New file.
3188         * Makefile.am (libfetish_a_SOURCES): Add gtod.h.
3189
3190 2001-08-04  Jim Meyering  <meyering@lucent.com>
3191
3192         * error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if stmt,
3193         to get in sync with glibc.
3194
3195 2001-08-03  Paul Eggert  <eggert@twinsun.com>
3196
3197         The following changes are from gettext 0.10.39 as maintained by
3198         Bruno Haible.
3199
3200         * mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
3201         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
3202         with inverted sense.  All uses changed.
3203
3204         * mbswidth.c: Don't include <limits.h>.
3205         Include <stdlib.h> and <string.h> unconditionally.
3206         (iswcntrl, mbsinit, ISCNTRL): New macros.
3207         (mbsnwidth): Use K&R style function declarations.
3208         Don't bother checking for MB_LEN_MAX == 1, since the compiler
3209         can optimize it when MB_CUR_MAX == 1.
3210         The width of control characters is zero, not 1.
3211
3212 2001-07-15  Jim Meyering  <meyering@lucent.com>
3213
3214         * Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
3215         (BUILT_SOURCES): Add unlocked-io.h.
3216         (io_functions): Define.
3217         (unlocked-io.h): New rule.
3218         (DISTCLEANFILES): Add unlocked-io.h.
3219         (all-local): Depend on unlocked-io.h, to ensure it is created.
3220
3221         * unlocked-io.hin: New file
3222
3223         * regex.c: Update from glibc.
3224
3225 2001-07-05  Jim Meyering  <meyering@lucent.com>
3226
3227         * Makefile.am (noinst_HEADERS): Remove definition, per new automake
3228         recommendation.
3229         (libfetish_a_SOURCES): Put all .h files here instead.
3230         Remove a thus-exposed (better checks in automake) duplicate and
3231         two unnecessary .h files.
3232
3233 2001-06-11  Jim Meyering  <meyering@lucent.com>
3234
3235         * regex.c: Update from GNU libc.
3236
3237 2001-05-27  Jim Meyering  <meyering@lucent.com>
3238
3239         * readutmp.h (UT_TYPE): Define.
3240
3241 2001-05-24  Jim Meyering  <meyering@lucent.com>
3242
3243         * argmatch.c: Include "quote.h".
3244         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
3245         quote function.  Reported by Göran Uddeborg.
3246
3247 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
3248
3249         * dirname.c (dir_name): Compute append_dot using path, not newpath
3250         which is not yet declared.
3251
3252 2001-05-11  Paul Eggert  <eggert@twinsun.com>
3253
3254         * Makefile.am (libfetish_a_SOURCES):
3255         Add strftime.c, since we now compile it on all hosts.
3256
3257         * strftime.c (my_strftime):
3258         Define to nstrftime if emacs, but only if my_strftime is not defined.
3259         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
3260         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
3261         Add one more extra argument: a nanoseconds value.
3262         All uses changed.
3263         (ns): New macro.
3264         (my_strftime function): Add %N format.
3265         (emacs_strftimeu): Renamed from emacs_strftime,
3266         with extra ut argument.
3267
3268 2001-05-11  Paul Eggert  <eggert@twinsun.com>
3269
3270         dirname code cleanup.  base_name now behaves more compatibly
3271         with POSIX basename when given file names that have trailing
3272         slashes, and similarly for dir_name.  Add new primitives
3273         base_len and dir_len.  Put the directory-name-related decls
3274         into dirname.h.
3275
3276         * addext.c (ISSLASH, base_name): Remove; now in dirname.h.
3277         * backupfile.c (base_name): Likewise.
3278         * basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
3279         * dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
3280         * makepath.c (strip_trailing_slashes): Likewise.
3281         * path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN, ISSLASH):
3282         Likewise.
3283         * rename.c (strip_trailing_slashes): Likewise.
3284         * same.c (base_name): Likewise.
3285         * stripslash.c (ISSLASH): Likewise.
3286
3287         * addext.c: Include <dirname.h> after size_t is defined.
3288         * backupfile.c: Likewise.
3289
3290         * addext.c (addext): Use base_len to trim redundant
3291         trailing slashes instead of doing it ourselves.
3292         But do not trim the last slash if it is not redundant.
3293
3294         * backupfile.c (find_backup_file_name,
3295         max_backup_version): Use base_len instead of rolling it ourselves.
3296         Handle the case of "" and (on DOS) "C:" correctly.
3297
3298         * basename.c: Do not include <stdio.h>, <assert.h>; no longer needed.
3299         Include <string.h>, <dirname.h>.
3300         (base_name): Allow file names ending in slashes, other than names
3301         that are all slashes.  In this case, return the basename followed
3302         by the slashes.  This is more general, and can be used in places
3303         where the original base_name purposely had an assertion failure.
3304         (base_len): New function.
3305
3306         * dirname.c: Include <string.h> instead of <stdlib.h>.
3307         Do not include <assert.h>; no longer needed.
3308         Include xalloc.h.
3309         (memrchr): Remove decl.
3310         (dir_name_r): Remove.
3311         (dir_len): Renamed from dirlen.  All callers changed.
3312         Rewrite in terms of base_name, for simplicity and consistency.
3313         (dir_name): Never return NULL.  All callers changed.
3314         Do not include <stdlib.h> in test program; no longer needed.
3315         return 0; is fine for test program.
3316
3317         * dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
3318         New macros.
3319         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
3320
3321         * path-concat.c (path_concat): Use base_len to compute
3322         base length, not strlen; this means we cannot rely on memcpy
3323         to null-terminate.
3324
3325         * same.c (STREQ): Remove.
3326         (same_name): Handle the case where the basename ends in trailing '/'.
3327
3328         * stripslash.c (strip_trailing_slashes): Return nonzero if
3329         a slash was stripped.  Do not strip the last slash after a
3330         file system prefix.
3331
3332 2001-04-08  Jim Meyering  <meyering@lucent.com>
3333
3334         * getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
3335         recomputed; that's necessary when the offset spans a DST transition.
3336         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
3337
3338 2001-04-02  Jim Meyering  <meyering@lucent.com>
3339
3340         * regex.h, regex.c: Update from GNU libc.
3341
3342 2001-03-19  Paul Eggert  <eggert@twinsun.com>
3343
3344         * version-etc.c (version_etc_copyright): Update to 2001.
3345
3346 2001-03-16  Paul Eggert  <eggert@twinsun.com>
3347
3348         * tempname.c (uint64_t): Define to uintmax_t if
3349         not defined, and if UINT64_MAX is not defined.
3350         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
3351         Reported by John David Anglin.
3352
3353 2001-03-10  Bruno Haible  <haible@clisp.cons.org>
3354
3355         * localcharset.c (locale_charset): Allow wildcard syntax. Also resolve
3356         alias if codeset is empty.
3357         * config.charset (BeOS): Use wildcard syntax.
3358
3359 2001-03-13  Jim Meyering  <meyering@lucent.com>
3360
3361         * path-concat.c (path_concat) [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]:
3362         Don't insert a backslash when concatenating e.g., `C:' and `foo'.
3363         From Bruno Haible.
3364
3365 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
3366
3367         * localcharset.c (locale_charset): Don't use setlocale(LC_CTYPE,NULL).
3368         Don't return NULL.
3369         * unicodeio.c (print_unicode_char): Simplify accordingly.
3370
3371 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
3372
3373         * config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
3374         support for DOS/DJGPP.
3375
3376 2001-02-28  Paul Eggert  <eggert@twinsun.com>
3377
3378         * Makefile.am (libfetish_a_SOURCES):
3379         Add dup-safer.c, fopen-safer.c.
3380         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
3381
3382         * dup-safer.c, fopen-safer.c, stdio-safer.h, unistd-safer.h: New files.
3383
3384 2001-02-25  Paul Eggert  <eggert@twinsun.com>
3385
3386         The mkstemp replacement is taken from glibc 2.2.2, with some
3387         portability fixes for use outside glibc, as follows:
3388
3389         * tempname.c (struct_stat64): New macro.
3390         (direxists, __gen_tempname): Use it.
3391         This avoids a portability problem with Solaris 8.
3392
3393         * tempname.c (<config.h>): Include if HAVE_CONFIG_H.
3394         (<stddef.h>, <stdint.h>, <string.h>):
3395         Include only if STDC_HEADERS || _LIBC.
3396         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
3397         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
3398         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
3399         (__set_errno): Define this macro if <errno.h> doesn't.
3400         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
3401         Define these macros if <stdio.h> doesn't.
3402         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
3403         Define these macros if <sys/stat.h>
3404         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
3405         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
3406         __xstat64): Define if not _LIBC.
3407         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
3408         (__gen_tempname): Invoke gettimeofday only if
3409         HAVE_GETTIMEOFDAY || _LIBC;
3410         otherwise, fall back on plain "time".
3411         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
3412
3413         * mkstemp.c (__GT_FILE): Define to zero if not defined.
3414
3415         * mkstemp.c, tempname.c: New files, taken from glibc 2.2.2.
3416
3417 2001-02-17  Jim Meyering  <meyering@lucent.com>
3418
3419         * strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
3420         around included file name.
3421
3422         * strnlen.c (__strnlen): Merge in a change from GNU libc.
3423
3424         * strftime.c: Update from GNU libc (the only changes were to comments).
3425
3426 2001-02-13  Bruno Haible  <haible@clisp.cons.org>
3427
3428         * mbswidth.h (mbswidth): Also define as macro, to avoid prototype clash.
3429
3430 2001-02-17  Paul Eggert  <eggert@twinsun.com>
3431
3432         * mbswidth.c, quotearg.c (mbrtowc, mbsinit):
3433         Remove workaround macros for hosts that have mbrtowc but not
3434         mbstate_t, as we now insist on proper declarations for both
3435         before using mbrtowc.
3436
3437 2001-02-17  Jim Meyering  <meyering@lucent.com>
3438
3439         * regex.c: Update from libc.
3440
3441 2001-02-16  Paul Eggert  <eggert@twinsun.com>
3442
3443         * alloca.c (malloc): Undef before defining, since stdlib.h
3444         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
3445         Reported by Mark Hounschell via Paul Eggert.
3446
3447 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
3448
3449         * config.charset: Update for FreeBSD 4.2.
3450
3451 2001-01-26  Jim Meyering  <meyering@lucent.com>
3452
3453         * quotearg.c: Include stddef.h.
3454         * quote.c: Include stddef.h.
3455         Reported by Axel Kittenberger.
3456
3457         * xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
3458         line in double quotes so that it evokes a better diagnostic.
3459         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
3460         Reported by Axel Kittenberger.
3461
3462 2001-01-15  Bruno Haible  <haible@clisp.cons.org>
3463
3464         * unicodeio.c (print_unicode_char): Cast the second iconv() arg,
3465         to avoid a warning.  Add back 'const' to inptr.
3466
3467 2001-01-16  Jim Meyering  <meyering@lucent.com>
3468
3469         * basename.c: Include <stdio.h>, needed by assert on SunOS 4.
3470         From Bruno Haible.
3471
3472 2001-01-14  Jim Meyering  <meyering@lucent.com>
3473
3474         * rename.c: New file.  From Volker Borchert.
3475         Include stdlib.h, string.h or strings.h, and xalloc.h.
3476         Use strip_trailing_slashes rather than open-coding it.
3477
3478 2001-01-03  Paul Eggert  <eggert@twinsun.com>
3479
3480         * strftime.c: Sync with glibc time/strftime.c 1.81.
3481
3482 2001-01-03  Jim Meyering  <meyering@lucent.com>
3483
3484         * unicodeio.c (print_unicode_char): Remove `const' from declaration of
3485         local `inptr' to avoid warning with some system declarations of iconv.
3486
3487 2000-12-29  Paul Eggert  <eggert@twinsun.com>
3488
3489         * modechange.c: Do not assume that mode_t uses the
3490         traditional octal encoding.  E.g. "chmod 1 FOO" should set
3491         the other-execute bit of FOO even if S_IXOTH != 1.
3492
3493         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
3494         WOTH, XOTH, ALLM): New macros.
3495         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
3496          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
3497         Use them.
3498         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
3499         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
3500         (mode_compile):
3501         No need to use uintmax_t; unsigned long is long enough.
3502         Don't bother to get suffix since we don't use it.
3503
3504 2000-12-24  Jim Meyering  <meyering@lucent.com>
3505
3506         * hash.c (is_prime): Return explicit boolean values.
3507         (hash_get_first): Return NULL to appease Irix5.6's 89.
3508         Reported by Nelson Beebe.
3509
3510 2000-10-31  Bruno Haible  <haible@clisp.cons.org>
3511
3512         * localcharset.c (locale_charset): Add support for Win32.
3513
3514 2000-12-18  Paul Eggert  <eggert@twinsun.com>
3515
3516         * physmem.h, physmem.c: New files.
3517
3518         * Makefile.am (libfetish_a_SOURCES): Add physmem.c.
3519         (noinst_HEADERS): Add physmem.h.
3520
3521         * xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
3522         't' for compatibility with Solaris 8 sort.
3523
3524 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
3525
3526         * config.charset: Add support for BeOS.
3527
3528 2000-12-16  Jim Meyering  <meyering@lucent.com>
3529
3530         * getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
3531         SHELLS_FILE to a file name that's useful on djgpp systems.
3532         Include stdlib.h.
3533         (ADDITIONAL_DEFAULT_SHELLS): Define.
3534         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
3535         Based mostly on a patch from Prashant TR.
3536
3537 2000-12-16  Jim Meyering  <meyering@lucent.com>
3538
3539         This bug had a serious impact on chown: `chown N:M FILE' (for integer
3540         N and M) would have treated it like `chown N:N FILE'.
3541
3542         * userspec.c (parse_user_spec): Fix typo: s/u/g/.
3543
3544 2000-10-31  Bruno Haible  <haible@clisp.cons.org>
3545
3546         * config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB, VISCII,
3547         CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256, CP1257
3548         to the list of canonical encodings. Rename EUC-CN to GB2312.
3549
3550 2000-12-08  Andreas Schwab  <schwab@suse.de>
3551
3552         * mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
3553         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
3554
3555 2000-12-07  Jim Meyering  <meyering@lucent.com>
3556
3557         * stripslash.c (ISSLASH): Define.
3558         (strip_trailing_slashes): Use ISSLASH rather than comparing against `/'.
3559         From Prashant TR.
3560
3561         * dirname.c (FILESYSTEM_PREFIX_LEN): Define.
3562         (dir_name_r): Declare this function as static.
3563         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
3564         manifest itself on a name containing a mix of slashes and
3565         backslashes.
3566         Make this function work with names starting with a DOS-style
3567         drive letter and colon prefix.
3568         (dir_name): Append `.' if necessary.
3569         Based mostly on patches from Prashant TR and Eli Zaretskii.
3570
3571         * dirname.h (dir_name_r): Remove prototype.
3572
3573 2000-12-05  Jim Meyering  <meyering@lucent.com>
3574
3575         * dirname.c (dir_name_r): Add `const' in a few local declarations.
3576
3577 2000-12-04  Jim Meyering  <meyering@lucent.com>
3578
3579         * path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
3580         Also include memory.h, stdlib.h, unistd.h if appropriate.
3581         Reported by Andreas Jaeger (conflicting declaration of malloc).
3582
3583 2000-12-02  Jim Meyering  <meyering@lucent.com>
3584
3585         * closeout.h: Make idempotent, to avoid some obscure warnings.
3586
3587 2000-12-01  Paul Eggert  <eggert@twinsun.com>
3588
3589         * memrchr.c: Include <config.h> before any system include file.
3590
3591 2000-11-29  Paul Eggert  <eggert@twinsun.com>
3592
3593         * dirname.c (dir_name_r): Fix typo: int -> size_t.
3594
3595 2000-11-26  Jim Meyering  <meyering@lucent.com>
3596
3597         * memcoll.c: Include sys/types.h.  From Werner Almesberger.
3598
3599 2000-11-22  Paul Eggert  <eggert@twinsun.com>
3600
3601         * strftime.c (my_strftime): Do not invoke mbrlen with a
3602         size of (size_t) -1; it's not portable.
3603
3604 2000-11-17  Akim Demaille  <akim@epita.fr>
3605
3606         * obstack.h: Formatting changes.
3607         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
3608         prevent type checking.
3609         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
3610         cast the value to (void *): assigning a `foo *' to a `void *'
3611         variable is valid.
3612         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
3613
3614 2000-11-17  Jim Meyering  <meyering@lucent.com>
3615
3616         * strstr.c: Update from GNU libc.
3617
3618 2000-11-16  Jim Meyering  <meyering@lucent.com>
3619
3620         * strverscmp.c: Incorporate weak-alias-related changes from glibc.
3621
3622 2000-11-11  Jim Meyering  <meyering@lucent.com>
3623
3624         * error.c: Add a couple #includes, merging from GNU libc version.
3625
3626 2000-11-10  Jim Meyering  <meyering@lucent.com>
3627
3628         * obstack.h: Update from GNU libc.
3629         * obstack.c: Likewise.
3630
3631 2000-11-06  Paul Eggert  <eggert@twinsun.com>
3632
3633         * getusershell.c (setusershell): Use rewind rather than
3634         fseek/fseeko, to avoid configuration hassles with fseeko.
3635         Don't bother opening SHELLS_FILE if shellstream is NULL;
3636         it's not necessary.
3637
3638 2000-11-05  Jim Meyering  <meyering@lucent.com>
3639
3640         * makepath.h (make_dir): Declare.
3641         * makepath.c (make_dir): Remove `static' attribute.
3642         Tweak a comment.
3643
3644 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
3645
3646         * hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
3647         last one in a bucket, advance to the next bucket.
3648
3649 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
3650
3651         * fnmatch.c: Do not comment out all the code if we are using
3652         the GNU C library, because in some cases we are replacing buggy
3653         code in the GNU C library itself.
3654
3655 2000-10-30  Paul Eggert  <eggert@twinsun.com>
3656
3657         * error.h, getline.h, modechange.h:
3658         Remove "2000" from Copyright line, as the file hasn't been
3659         changed this year other than in the copyright notice.
3660
3661         * xalloc.h: Add "2000" to Copyright line, as this file
3662         was changed this year.
3663
3664 2000-10-30  Paul Eggert  <eggert@twinsun.com>
3665
3666         * fnmatch.c (FOLD): Do not assume that characters are unsigned.
3667         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
3668         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
3669
3670 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
3671
3672         * regex.h (__restrict_arr): Move definition out of #ifndef block.
3673         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
3674         doesn't define __restrict_arr.
3675
3676 2000-10-29  Jim Meyering  <meyering@lucent.com>
3677
3678         * xstat.in: Fix grammar in comment.
3679
3680 2000-10-28  Jim Meyering  <meyering@lucent.com>
3681
3682         * memchr.c: Update from libc.
3683         Adjust for portability:
3684         [HAVE_STDLIB_H]: Include stdlib.h.
3685         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
3686         Undef __memchr, too.
3687         [!weak_alias]: Define __memchr to memchr.
3688
3689         * regex.c: Update from libc.
3690         * regex.h: Likewise.
3691         * getopt1.c: Likewise.
3692         * memcmp.c: Likewise.
3693
3694         * getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
3695         Avoid using fseek, when possible -- it's broken by design.
3696         Patch by Ulrich Drepper.
3697
3698 2000-10-26  Jim Meyering  <meyering@lucent.com>
3699
3700         * strftime.c: Update from libc.
3701
3702 2000-10-25  Jim Meyering  <meyering@lucent.com>
3703
3704         * obstack.c: Update from libc.
3705
3706 2000-10-23  Jim Meyering  <meyering@lucent.com>
3707
3708         * hard-locale.c (hard_locale): Revert last change -- it was simply
3709         wrong.  That set_locale call must not have any side effects.
3710         From Paul Eggert.
3711
3712 2000-10-22  Jim Meyering  <meyering@lucent.com>
3713
3714         * md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
3715         [CYCLIC]: Remove now-unused definition.
3716
3717         * save-cwd.c (O_DIRECTORY): Define, if needed.
3718         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
3719         Suggestion from Ulrich Drepper.
3720
3721 2000-10-21  Jim Meyering  <meyering@lucent.com>
3722
3723         * dirname.c (dir_name_r): New function, factored out of dir_name.
3724         (dir_name): Use dir_name_r.
3725         * dirname.h (dir_name_r): Declare it.
3726
3727 2000-10-21  Jim Meyering  <meyering@lucent.com>
3728
3729         * dirname.c (memrchr): Declare if necessary.
3730         (dir_name): Remove the restriction that there be no
3731         trailing slashes.  Now, this code skips past them, effectively
3732         ignoring them.
3733         [TEST_DIRNAME] (main): New unit tests.
3734
3735         * memrchr.c: New file from GNU libc.
3736         Undef __memrchr, too.
3737         [!weak_alias]: Define __memrchr to memrchr.
3738         Guard weak_alias use with `#ifdef weak_alias'.
3739
3740 2000-10-17  Jim Meyering  <meyering@lucent.com>
3741
3742         * quote.h (PARAMS): Define and use.
3743         Reported by Akim Demaille.
3744
3745         * getopt.c: Update from libc.
3746
3747 2000-10-16  Jim Meyering  <meyering@lucent.com>
3748
3749         * hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to setlocale.
3750         From Jan Fedak.
3751
3752 2000-09-25  Jim Meyering  <meyering@lucent.com>
3753
3754         * md5.h (rol): Define (from GnuPG).
3755
3756         * sha.c: Give credit (GnuPG) where due.
3757         (M): Use rol rather than open-coding it.
3758         Add a FIXME comment.
3759
3760 2000-09-21  Jim Meyering  <meyering@lucent.com>
3761
3762         * userspec.c (parse_user_spec): Remove debugging printf I'd added.
3763         Reported by Michael Stone.
3764
3765 2000-09-20  Jim Meyering  <meyering@lucent.com>
3766
3767         * Makefile.am (libfetish_a_SOURCES): Add sha.c.
3768         (noinst_HEADERS): Add sha.h.
3769         Based on code from Scott G. Miller and from GnuPG.
3770
3771 2000-09-15  Jim Meyering  <meyering@lucent.com>
3772
3773         * regex.c: Update from libc.
3774
3775 2000-09-10  Jim Meyering  <meyering@lucent.com>
3776
3777         * getopt.c (_getopt_internal): Update from glibc.
3778
3779 2000-09-09  Jim Meyering  <meyering@lucent.com>
3780
3781         * quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
3782         think it should be used as a general replacement for isascii.
3783         * fnmatch.c: Likewise.
3784         * mbswidth.c: Likewise
3785         * regex.c: Likewise.
3786
3787         Don't use atoi.
3788         * userspec.c: Include sys/param.h and limits.h.
3789         Include xstrtol.h.
3790         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
3791         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
3792         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
3793         UID, GID.  Check range.
3794
3795 2000-09-06  Jim Meyering  <meyering@lucent.com>
3796
3797         * getopt.c (_getopt_internal): Update from glibc.
3798
3799 2000-08-30  Jim Meyering  <meyering@lucent.com>
3800
3801         * strftime.c: Merge in changes from GNU libc.
3802
3803 2000-08-26  Jim Meyering  <meyering@lucent.com>
3804
3805         * closeout.c: Include "__fpending.h".
3806         (close_stdout_status): Return right away if there's nothing to flush.
3807
3808         * Makefile.am (noinst_HEADERS): Add __fpending.h.
3809         * __fpending.c: New file.
3810         * __fpending.h: New file.
3811
3812 2000-08-07  Paul Eggert  <eggert@twinsun.com>
3813
3814         Standardize on "memory exhausted" instead of "Memory exhausted"
3815         or "virtual memory exhausted".
3816         * obstack.c (print_and_abort): Use "memory exhausted", not
3817         "virtual memory exhausted".
3818         * same.c (same_name): Invoke xalloc_die instead of printing
3819         our own message.
3820         * userspec.c (parse_user_spec): Likewise.
3821         * bumpalloc.h: comment fix
3822         * same.c, userspec.c: Include xalloc.h.
3823
3824         * xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
3825         not char *const and pointing to a constant array.
3826         * xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
3827         (xrealloc): Comment fix.
3828
3829         * userspec.c (parse_user_spec):
3830         Don't translate a message until just before returning,
3831         to avoid unnecessary translation.
3832
3833 2000-08-07  Jim Meyering  <meyering@lucent.com>
3834
3835         * addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
3836         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
3837         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
3838         getgroups.c, gethostname.c, getopt.h, group-member.c,
3839         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
3840         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
3841         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
3842         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
3843         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
3844         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
3845         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
3846         yesno.c: Back out Copyright date changes for each file with no change
3847         this year.  This eases coordination with other programs using the same
3848         source code modules.  From Paul Eggert.
3849
3850 2000-08-03  Greg McGary  <greg@mcgary.org>
3851
3852         * regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
3853         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
3854         (EXTEND_BUFFER): Use them.
3855
3856 2000-08-01  Jim Meyering  <meyering@lucent.com>
3857
3858         * dirname.c (ISSLASH): Define.
3859         (BACKSLASH_IS_PATH_SEPARATOR): Define.
3860         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
3861         both `\' and `/' may be use as path separators.
3862         Based on a patch from Prashant TR.
3863
3864 2000-07-31  Paul Eggert  <eggert@twinsun.com>
3865
3866         * quotearg.c (quotearg_n_options): Don't make the initial
3867         slot vector a constant, since it might get modified.
3868
3869 2000-07-31  Jim Meyering  <meyering@lucent.com>
3870
3871         * xmalloc.c: Use `virtual memory exhausted', not `Memory exhausted'.
3872         * obstack.c (print_and_abort): Likewise.
3873
3874 2000-07-30  Paul Eggert  <eggert@twinsun.com>
3875
3876         * quotearg.c (quotearg_n_options): Preallocate a slot 0
3877         buffer, so that the caller can always quote one small
3878         component of a "memory exhausted" message in slot 0.
3879         From a suggestion by Jim Meyering.
3880
3881 2000-07-30  Jim Meyering  <meyering@lucent.com>
3882
3883         * makepath.c (make_path): Quote the other instance, too.
3884
3885         * quotearg.c (N_STATIC_SLOTVECS): Define.
3886         (STATIC_BUF_SIZE): Define.
3887         (quotearg_n_options): Use only statically allocated storage when
3888         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
3889         than STATIC_BUF_SIZE.
3890
3891 2000-07-29  Jim Meyering  <meyering@lucent.com>
3892
3893         * diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
3894         * dirname.c (dir_name): Likewise.
3895
3896         * basename.c (base_name): Use ISSLASH rather than comparing against `/'.
3897
3898         * dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
3899         (dir_name): Assert that there are no trailing slashes.
3900
3901 2000-07-18  Bruno Haible  <haible@clisp.cons.org>
3902
3903         * mbswidth.h (mbswidth): Add a flags argument.
3904         (mbswidth): New declaration.
3905         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
3906         * mbswidth.c (mbswidth): Add a flags argument.
3907         (mbsnwidth): New function.
3908
3909 2000-07-24  Jim Meyering  <meyering@lucent.com>
3910
3911         * mbswidth.c: Remove useless #else.  From Bruno Haible.
3912
3913 2000-07-23  Paul Eggert  <eggert@twinsun.com>
3914
3915         * mbswidth.c (_XOPEN_SOURCE):
3916         Don't define; this causes problems on Solaris 7.
3917         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
3918
3919 2000-07-23  Paul Eggert  <eggert@twinsun.com>
3920
3921         * quotearg.c:
3922         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
3923         so that mbstate_t is always defined.
3924
3925         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
3926         be 1 in at least one GCC installation, and this configuration
3927         error is likely to be common.  Ignoring MB_LEN_MAX hurts
3928         performance on hosts that have mbrtowc but have only unibyte
3929         locales, but I assume these hosts are rare.
3930
3931 2000-07-23  Paul Eggert  <eggert@twinsun.com>
3932
3933         * quotearg.c: Streamline by invoking multibyte code only if needed.
3934         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
3935         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
3936         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
3937         invoke multibyte primitives.
3938
3939 2000-07-23  Jim Meyering  <meyering@lucent.com>
3940
3941         * basename.c (base_name): Add an assertion.
3942
3943 2000-07-15  Bruno Haible  <clisp.cons.org>
3944
3945         * quotearg.c: When the system forces us to redefine mbstate_t,
3946         shadow its mbsinit function.
3947
3948 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
3949
3950         * mbswidth.h: New file.
3951         * mbswidth.c: New file.
3952         * Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
3953         (noinst_HEADERS): Add mbswidth.h.
3954
3955 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
3956
3957         * config.charset: Add support for FreeBSD. Improve support for HP-UX
3958         and IRIX 6.
3959
3960 2000-07-15  Jim Meyering  <meyering@lucent.com>
3961
3962         * makepath.c: Include quote.h.
3963         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
3964         corresponding argument in a `quote (...)' call.
3965         Give better diagnostics.
3966
3967         * Makefile.am (libfetish_a_SOURCES): Add quote.c.
3968         (noinst_HEADERS): Add quote.h.
3969
3970         * quote.c (quote, quote_n): New file.  Two functions taken verbatim
3971         from tar's src/misc.c.
3972         * quote.h: New file.  Prototypes for same.
3973
3974 2000-07-10  Paul Eggert  <eggert@twinsun.com>
3975
3976         From a suggestion by Bruno Haible.
3977         * quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
3978         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
3979         to decide whether to define the BeOS workaround macro;
3980         this adjusts to the change to AC_MBSTATE_T.
3981
3982 2000-07-13  Paul Eggert  <eggert@twinsun.com>
3983
3984         * quotearg.h (enum quoting style): New enum clocale_quoting_style.
3985
3986         * quotearg.c (quoting_style_args, quoting_style_vals,
3987         quotearg_buffer_restyled): Add support for
3988         clocale_quoting_style.  Undo previous change to
3989         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
3990         and "{RIGHT QUOTATION MARK}" msgids.
3991
3992 2000-07-05  Paul Eggert  <eggert@twinsun.com>
3993
3994         The old behavior of quoting `like this' doesn't look good with
3995         newer, ISO-style fonts.  See:
3996         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
3997
3998         Instead, quote "like this" by default.  Let the translator
3999         tailor the locale-specific quoting behavior by providing
4000         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
4001
4002         * quotearg.c (N_): New macro.
4003         (gettext_default): New function.
4004         (quotearg_buffer_restyled): Use
4005         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
4006         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
4007
4008 2000-07-09  Jim Meyering  <meyering@lucent.com>
4009
4010         * Most files: Update copyright dates to include 2000.
4011
4012 2000-07-08  Jim Meyering  <meyering@lucent.com>
4013
4014         * xgethostname.c (ENAMETOOLONG): Define to an unlikely value
4015         if not defined.
4016         (xgethostname): Remove now-unnecessary #ifdef.
4017         Move declaration of `err' into loop where it's used.
4018
4019 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
4020
4021         * xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
4022         by allocating a larger buffer. Test the gethostname return value for
4023         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
4024         returns an error and ENAMETOOLONG isn't defined.
4025
4026 2000-07-05  Paul Eggert  <eggert@twinsun.com>
4027         and Bruno Haible  <haible@clisp.cons.org>
4028
4029         * quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
4030
4031 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
4032
4033         * quotearg.c (struct quoting_options): Simplify quote_these_too
4034         dimension.
4035
4036 2000-07-03  Jim Meyering  <meyering@lucent.com>
4037
4038         * strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
4039         Reported by Bruno Haible.
4040
4041 2000-07-04  Jim Meyering  <meyering@lucent.com>
4042
4043         * quotearg.c: Make inclusion of <wchar.h> independent of whether
4044         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
4045         lacks mbrtowc.
4046
4047 2000-07-03  Paul Eggert  <eggert@twinsun.com>
4048         and Bruno Haible  <haible@clisp.cons.org>
4049
4050         * quotearg.c (mbrtowc):
4051         Assign to *pwc, and return 1 only if result is nonzero.
4052         (iswprint): Use ISPRINT when substituting our own mbrtowc.
4053
4054 2000-07-03  Jim Meyering  <meyering@lucent.com>
4055
4056         * readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
4057         This is necessary to get a definition of e.g., UTMP_FILE on HP-UX 10.20.
4058         From Bob Proulx.
4059
4060 2000-07-02  Jim Meyering  <meyering@lucent.com>
4061
4062         * quotearg.c (mbstate_t): Don't define here.
4063
4064 2000-07-02  Jim Meyering  <meyering@lucent.com>
4065
4066         * nanosleep.c (SIGCONT): Define if not already defined.
4067
4068 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
4069
4070         * mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
4071         per change in ../m4/ls-mntd-fs.m4.
4072         (read_filesystem_list): Ignore symbolic links.
4073
4074 2000-06-29  Jim Meyering  <meyering@lucent.com>
4075
4076         * same.c: Include <string.h> or <strings.h>, as appropriate,
4077         for declaration of strcmp.
4078
4079         * long-options.c: Include <stdlib.h>, for declaration of exit.
4080
4081         * mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
4082         Avoid warning by casting result to `char *' to remove `const'.
4083
4084 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
4085
4086         * Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
4087
4088 2000-06-26  Paul Eggert  <eggert@twinsun.com>
4089
4090         savedir now sets errno on failure and invokes xmalloc to get memory.
4091         Fix a couple of other minor bugs while we're at it.
4092
4093         * savedir.c (<unistd.h>): Do not include; there's no need.
4094         (NAMLEN): Remove macro.
4095         (malloc, realloc): Remove decls.
4096         (stpcpy): Likewise.
4097         ("xalloc.h"): Include.
4098         (NAME_SIZE_DEFAULT): New macro.
4099         (savedir): Use xmalloc / xrealloc to allocate memory.
4100         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
4101         Skip "" directory entries.
4102         Use strlen to calculate directory entry length, since the old method
4103         is rarely used these days and isn't worth supporting.
4104         Don't use a pointer after freeing it.
4105         Check for integer overflow when calculating allocation size.
4106         Use memcpy to copy entries, instead of stpcpy.
4107         Set errno properly when returning NULL.
4108         Check for readdir error.
4109
4110 2000-06-26  Jim Meyering  <meyering@lucent.com>
4111
4112         * posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
4113
4114 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
4115
4116         * getusershell.c (xmalloc, xrealloc): Remove functions.
4117         Include xalloc.h.
4118         Don't include <stdlib.h>.  Don't declare malloc, realloc.
4119
4120 2000-06-23  Bruno Haible  <haible@clisp.cons.org>
4121
4122         * unicodeio.c (print_unicode_char): Work around ansi2knr deficiency.
4123
4124 2000-06-24  Jim Meyering  <meyering@lucent.com>
4125
4126         * error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
4127
4128 2000-06-21  Jim Meyering  <meyering@lucent.com>
4129
4130         * getpass.c: New file, from Bruno Haible.  Required for BeOS.
4131
4132 2000-06-19  Paul Eggert  <eggert@twinsun.com>
4133
4134         * quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
4135         (mbrtowc, mbstate_t): Define substitutes if
4136         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
4137         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
4138         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
4139
4140 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
4141
4142         * xgetcwd.c (xgetcwd): If the required pathname length is smaller
4143         than 1024, return a memory chunk of least possible size, instead
4144         of size PATH_MAX + 2. In the loop, increment the size proportionally.
4145         Use free/xmalloc instead of xrealloc to avoid copying for very long
4146         paths.
4147
4148 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
4149
4150         * canon-host.c (canon_host): Use malloc and memcpy to copy an
4151         address, not strdup.  Include <stdlib.h> and don't declare free().
4152
4153 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
4154
4155         * path-concat.c (path_concat): Don't access dir[-1] if dir is
4156         the empty string.
4157
4158 2000-06-21  Jim Meyering  <meyering@lucent.com>
4159
4160         * Makefile.am (libfetish_a_SOURCES): Add getstr.c.
4161         (noinst_HEADERS): Add getstr.h.
4162
4163         * getline.c (getstr): Move into a separate file.
4164         * getstr.c (getstr): New file, extracted from getline.c, with
4165         the following changes: new parameter, delim2; both delim[12]
4166         parameters have type `int', not `char'.  The latter would lose
4167         with 8-bit delimiters.
4168         * getstr.h: New file.
4169
4170 2000-06-19  Jim Meyering  <meyering@lucent.com>
4171
4172         * getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
4173
4174 2000-06-18  Jim Meyering  <meyering@lucent.com>
4175
4176         * mkdir.c: Remove file, due mainly to copyright incompatibility.
4177         Besides, these days every porting target provides a mkdir function.
4178
4179         * strnlen.c: Include memory.h, string.h, and/or strings.h as needed.
4180         (this snippet comes from src/system.h).
4181
4182 2000-06-15  Paul Eggert  <eggert@twinsun.com>
4183
4184         * human.c (adjust_value): New function.
4185         (human_readable_inexact): Apply rounding style even when
4186         printing approximate values.
4187
4188 2000-06-14  Paul Eggert  <eggert@twinsun.com>
4189
4190         * human.c (human_readable_inexact): Allow an input block
4191         size that is not a multiple of the output block size, and vice versa.
4192         Reported by Piergiorgio Sartor.
4193
4194 2000-06-14  Paul Eggert  <eggert@twinsun.com>
4195
4196         * getdate.y (get_date): Apply relative times after time
4197         zone indicator, not before.  Reported by Todd A. Jacobs.
4198
4199 2000-06-13  Jim Meyering  <meyering@lucent.com>
4200
4201         * Makefile.am (all-local): Depend on lstat.c and stat.c.
4202
4203         * xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
4204
4205 2000-06-12  Paul Eggert  <eggert@twinsun.com>
4206
4207         * xstat.in: Include <stdlib.h> in lstat, to declare "free".
4208
4209 2000-06-04  Paul Eggert  <eggert@twinsun.com>
4210
4211         * strnlen.c: Include <config.h> if HAVE_CONFIG_H.
4212
4213 2000-06-04  Jim Meyering  <meyering@lucent.com>
4214
4215         * getugroups.c (getugroups): Cast -1 to gid_t, for systems like
4216         SunOS 4.1.4 for which gid_t is an unsigned type.
4217
4218 2000-06-03  Jim Meyering  <meyering@lucent.com>
4219
4220         * strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
4221
4222 2000-05-26  Bruno Haible  <haible@clisp.cons.org>
4223
4224         * Makefile.am (install-exec-local): On systems with glibc-2.1 or
4225         newer, don't install charset.alias.
4226         * config.charset: Change the Linux/glibc rules so they become empty
4227         on glibc-2.1 or newer.
4228
4229 2000-06-02  Jim Meyering  <meyering@lucent.com>
4230
4231         * mountlist.c: Back out last change.  Instead, do this...
4232         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the me_dummy
4233         member using the same `ignore'-testing code.
4234         * mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
4235         fs_type strings.
4236         From Mark D. Roth.
4237
4238 2000-05-29  Jim Meyering  <meyering@lucent.com>
4239
4240         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore mounts
4241         with the `ignore' attribute.  Based on a patch from Mark D. Roth.
4242
4243 2000-05-22  Jim Meyering  <meyering@lucent.com>
4244
4245         * makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
4246
4247 2000-05-18  Jim Meyering  <meyering@lucent.com>
4248
4249         * hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
4250         back, too, since it may have been modified by allocate_entry.
4251         (hash_delete): Rewrite to use neither the assignment operator
4252         nor the comma operator in an if-expression.
4253
4254 2000-05-15  Paul Eggert  <eggert@twinsun.com>
4255
4256         * closeout.c:
4257         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
4258         Remove; no longer needed.
4259         "quotearg.h": Add include.
4260         (file_name): Do not bother to explicitly initialize to NULL; it's less
4261         efficient on some hosts.
4262         (close_stdout_status): Remove test as to whether stdout was already
4263         closed; it breaks for the case "echo x | sort >&-".
4264         Quote file name colons.
4265         Do not assume that _("write error") lacks format strings.
4266
4267 2000-05-15  Jim Meyering  <meyering@lucent.com>
4268
4269         * version-etc.c (version_etc_copyright): Update the copyright string
4270         used in all --version output.
4271
4272 2000-05-14  Jim Meyering  <meyering@lucent.com>
4273
4274         * closeout.c (close_stdout_set_file_name): New function.
4275         (close_stdout_status): Use new file-scoped global.
4276         Return right away if fstat says the stdout file descriptor is invalid.
4277         * closeout.h (close_stdout_set_file_name): Declare.
4278
4279 2000-05-10  Jim Meyering  <meyering@lucent.com>
4280
4281         * closeout.c [default_exit_status]: New file-scoped variable.
4282         (close_stdout_set_status): New function.
4283         * closeout.h (close_stdout_set_status): Declare.
4284
4285 2000-05-08  Jim Meyering  <meyering@lucent.com>
4286
4287         * long-options.c: Don't include closeout.h.
4288         (parse_long_options): Don't call close_stdout for --version.
4289
4290 2000-05-06  Jim Meyering  <meyering@lucent.com>
4291
4292         * strnlen.c: Undefine __strnlen and strnlen.
4293         [!weak_alias]: Define __strnlen to strnlen.
4294
4295         * atexit.c: New file, from libiberty.
4296
4297 2000-05-06  Jim Meyering  <meyering@lucent.com>
4298
4299         * closeout.c (close_stdout_status): Also check for errors on the
4300         stderr stream.
4301
4302 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
4303
4304         * localcharset.c (get_charset_aliases): Use malloc, realloc and memcpy
4305         instead of xmalloc, xrealloc, path_concat.
4306         (locale_charset): Treat empty environment variables as absent.
4307         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
4308
4309 2000-05-04  Jim Meyering  <meyering@lucent.com>
4310
4311         * getopt.c: Update from glibc.
4312         * obstack.c: Likewise.
4313         * obstack.h: Likewise.
4314         * regex.c: Likewise.  NB: K&R compiler support is dropped for this file
4315
4316         * regex.h: Likewise.
4317         * strndup.c: Likewise.
4318         * strnlen.c: New file, from glibc.
4319
4320 2000-05-01  Jim Meyering  <meyering@lucent.com>
4321
4322         * full-write.c (full_write): Remove `FIXME' part of comment.
4323
4324 2000-04-29  Jim Meyering  <meyering@lucent.com>
4325
4326         * path-concat.c: Declare strdup only if it's not defined.
4327         * canon-host.c: Likewise.
4328
4329 2000-04-28  Jim Meyering  <meyering@lucent.com>
4330
4331         * rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to avoid
4332         redefinition warning on some systems (HPUX).  Otherwise, regex.h is
4333         included first, then limits.h is included by locale.h by libintl.h.
4334         From John David Anglin.
4335
4336 2000-04-25  Jim Meyering  <meyering@lucent.com>
4337
4338         * makepath.c (S_IRWXUGO): Define.
4339         (make_path): Always perform explicit chmod if MODE specifies any
4340         of the `special' permission bits.  Prompted by a bug report against
4341         install from Mate Wierdl and Joost van Baal.
4342
4343 2000-04-18  Jim Meyering  <meyering@lucent.com>
4344
4345         * README: New file.
4346
4347         * getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
4348         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
4349
4350 2000-04-17  Jim Meyering  <meyering@lucent.com>
4351
4352         * strftime.c (my_strftime) [strftime]: Declare strftime here, since
4353         the definition of it to rpl_strftime also defined-away the system's
4354         declaration.
4355
4356 2000-04-15  Jim Meyering  <meyering@lucent.com>
4357
4358         Use `C' to denote so-called `contiguous' files, the same way
4359         that tar does.
4360         * filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
4361         (ftypelet): Use S_ISCTG.
4362         From Michael Deutschmann.
4363
4364 2000-04-14  Jim Meyering  <meyering@lucent.com>
4365
4366         * strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
4367
4368 2000-04-08  Jim Meyering  <meyering@lucent.com>
4369
4370         * Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
4371         names don't conflict.  Reported by Eli Zaretskii.
4372
4373 2000-03-28  Bruno Haible  <haible@clisp.cons.org>
4374
4375         * unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
4376         bug.  Deal with the different error behavior of Irix iconv.
4377
4378 2000-04-07  Jim Meyering  <meyering@lucent.com>
4379
4380         * putenv.c: Move inclusion of errno.h so it follows that of sys/types.h,
4381         to work around system header problems on AIX 3.2.5.  From Bruno Haible.
4382
4383 2000-04-05  Jim Meyering  <meyering@lucent.com>
4384
4385         Portability tweaks required for ultrix4.3.
4386         * readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare getutent.
4387         * readutmp.c: Include sys/types.h before sys/stat.h.
4388         * canon-host.c: Declare strdup.
4389         * path-concat.c: Likewise.
4390         From John David Anglin.
4391
4392 2000-04-04  Jim Meyering  <meyering@lucent.com>
4393
4394         Be more DOS 8.3-friendly.
4395         * ref-add.sin: Renamed from ref-add.sed.in.
4396         * ref-del.sin: Renamed from ref-del.sed.in.
4397         * Makefile.am: Reflect renaming.
4398         Reported by Eli Zaretskii.
4399
4400         Use a temporary file name that won't clash with `charset.alias'
4401         in the DOS 8.3 name space.
4402         * Makefile.am (charset_tmp): Define.
4403         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
4404         (uninstall-local): Likewise.
4405         Reported by Eli Zaretskii.
4406
4407 2000-03-29  Paul Eggert  <eggert@twinsun.com>
4408
4409         * time/strftime.c (my_strftime): Make sure we call the system
4410         strftime, not ourselves, when invoking the underlying strftime.
4411
4412 2000-03-24  Jim Meyering  <meyering@lucent.com>
4413
4414         * Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
4415         (charset_alias): Define.
4416         (install-exec-local): Factor out common code.
4417         (uninstall-local): Split lines longer than 80.
4418         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
4419         (SUFFIXES): Define.
4420         (.sed.in.sed): New rule.  Don't redirect directly to $@.
4421         (CLEANFILES): Add ref-add.sed and ref-del.sed.
4422
4423 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
4424
4425         * config.charset: Output a line containing "Packages using this file".
4426         * ref-add.sed.in, ref-del.sed.in: New files.
4427         * Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
4428         ref-del.sed): New rules.
4429
4430 2000-03-17  Jim Meyering  <meyering@lucent.com>
4431
4432         * unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
4433         Otherwise, include <strings.h>
4434
4435 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
4436
4437         * unicodeio.c (utf8_wctomb): New function.
4438         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
4439         format instead of in UCS-4 with platform dependent endianness.
4440
4441 2000-03-07  Paul Eggert  <eggert@twinsun.com>
4442
4443         * savedir.c (savedir): Work even if directory size is
4444         negative; this can happen with some screwy NFS configurations.
4445
4446 2000-03-06  Jim Meyering  <meyering@lucent.com>
4447
4448         * localcharset.c (get_charset_aliases): Don't try to free file_name
4449         if it's NULL (because we ran out of memory).  From Bruno Haible.
4450
4451 2000-03-05  Jim Meyering  <meyering@lucent.com>
4452
4453         * localcharset.c ("path-concat.h"): Include.
4454         (get_charset_aliases): Use path_concat instead of ANSI string
4455         concatenation.
4456
4457         * unicodeio.h (PARAMS): Define.
4458         Use it to guard prototype.
4459
4460 2000-03-04  Jim Meyering  <meyering@lucent.com>
4461
4462         * Makefile.am (install-exec-local): Create $(libdir) before installing
4463         into it.
4464         (uninstall-local): Uncomment this rule so `make distcheck' works
4465         once again.
4466
4467         * unicodeio.c (<errno.h>): Include it.
4468         (errno): Declare if not defined.
4469
4470         * localcharset.c: Add Bruno's comment justifying use of volatile.
4471
4472         * config.charset: New version, incorporating remarks from a linux
4473         i18n mailing list.  From Bruno Haible.
4474
4475 2000-03-02  Jim Meyering  <meyering@lucent.com>
4476
4477         * Makefile.am (EXTRA_DIST): Add config.charset.
4478
4479 2000-03-01  Jim Meyering  <meyering@lucent.com>
4480
4481         * localcharset.c: Guard some #includes with `#if HAVE_...'.
4482         * unicodeio.c: Likewise.
4483
4484 2000-02-02  Bruno Haible  <haible@clisp.cons.org>
4485
4486         * config.charset: New file.
4487         * localcharset.c: New file.
4488         * unicodeio.h, unicodeio.c: New files.
4489         * Makefile.am (DEFS): Add -DLIBDIR=...
4490         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
4491         (noinst_HEADERS): Add unicodeio.h.
4492         (all-local, install-exec-local, charset.alias): New targets.
4493
4494 2000-02-28  Paul Eggert  <eggert@twinsun.com>
4495
4496         * quotearg.c (ALERT_CHAR): New macro.
4497         (quotearg_buffer_restyled): Use it.
4498
4499 2000-02-27  Jim Meyering  <meyering@lucent.com>
4500
4501         * strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
4502         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
4503
4504         * backupfile.c: Guard inclusion of stdlib.h with `#if HAVE_STDLIB_H',
4505         not `#if STDC_HEADERS'.
4506         Declare malloc if needed.
4507
4508         * backupfile.c: Use `#if !HAVE_DECL...' instead of `#ifndef HAVE_DECL..'
4509         now that autoconf always defines the HAVE_DECL_ symbols.
4510         * human.c: Likewise.
4511         * same.c: Likewise.
4512         * strtoumax.c: Likewise.
4513
4514         * backupfile.c: Arrange for cpp to fail if the configure-time
4515         declaration check was not run.
4516         * hash.c: Likewise.
4517         * human.c: Likewise.
4518         * same.c: Likewise.
4519         * strtoumax.c: Likewise.
4520
4521         * userspec.c (parse_user_spec): If there is no `:' but there is a `.',
4522         then first look up the entire `.'-containing string as a login name.
4523
4524 2000-02-18  Paul Eggert  <eggert@twinsun.com>
4525
4526         * getdate.y: Handle two-digit years with leading zeros correctly.
4527         (textint): New typedef.
4528         (parser_control): Member year changed from int to textint.
4529         All uses changed.
4530         (YYSTYPE): Removed; replaced by %union with int and textint members.
4531         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
4532         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
4533         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
4534         (tSNUMBER, tUNUMBER): Now of type <textintval>.
4535         (date, number, to_year): Use width of number in digits, not its value,
4536         to determine whether it's a 2-digit year, or a 2-digit time.
4537         (yylex): Store number of digits of numeric tokens.
4538         Reported by John Kendall.
4539
4540         (parser_control): Changed from struct parser_control to typedef (for
4541         consistency).  All uses changed.
4542
4543         (tID): Removed; not used.
4544         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
4545
4546 2000-02-14  Paul Eggert  <eggert@twinsun.com>
4547
4548         * getpagesize.h (getpagesize): Port to VMS for Alpha;
4549         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
4550
4551 2000-02-12  Jim Meyering  <meyering@lucent.com>
4552
4553         * userspec.c (ISDIGIT): Define it.
4554         (isdigit): Remove definition.
4555         (is_number): Use ISDIGIT, not isdigit.
4556         <libintl.h>: Include.
4557         (_ and N_): Define.
4558         (parse_user_spec): Mark translatable strings.
4559
4560 2000-02-10  Jim Meyering  <meyering@lucent.com>
4561
4562         With these changes, nanosleep.[ch] are finally enough like the other
4563         lib/* replacement files to compile on a few more losing systems.
4564
4565         * nanosleep.h: Don't include config.h.
4566         Remove prototype from declaration of nanosleep.
4567         (PARAMS): Remove now-unneeded definition.
4568         * nanosleep.c: #undef nanosleep.
4569         (rpl_nanosleep): Rename from nanosleep.
4570
4571 2000-02-03  Jim Meyering  <meyering@lucent.com>
4572
4573         * readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
4574         rather than with `#if HAVE_UTMPNAME'.
4575
4576 2000-02-01  Jim Meyering  <meyering@lucent.com>
4577
4578         * readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
4579
4580 2000-01-31  Jim Meyering  <meyering@lucent.com>
4581
4582         * nanosleep.h (nanosleep): Guard declaration with
4583         `#if ! HAVE_DECL_NANOSLEEP'.
4584         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
4585         the declaration in that vendor's sys/timers.h.
4586         Reported by Christian Krackowizer.
4587
4588         * quotearg.c (ISASCII): Add #undef and move definition to follow
4589         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
4590         (ISPRINT): Likewise.
4591         Reported by Tom Tromey.
4592
4593 2000-01-30  Jim Meyering  <meyering@lucent.com>
4594
4595         * readutmp.c (extract_trimmed_name): Use UT_USER instead of hard-coding
4596         uses of ->ut_name.  The latter doesn't work with new Linux header files
4597         where only utmpx.ut_user is declared.
4598
4599         * readutmp.h (UT_USER): Define.
4600
4601 2000-01-23  Jim Meyering  <meyering@lucent.com>
4602
4603         * Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
4604         obstack.c.
4605
4606 2000-01-22  Jim Meyering  <meyering@lucent.com>
4607
4608         * strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
4609         [! HAVE_DECL_STRTOULL]: Declare strtoull.
4610         Required for some AIX systems.  Reported by Christian Krackowizer.
4611         [TESTING] (main): New function.
4612
4613         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
4614         * dirname.c (dir_name): Support for DOS-style file names with drive
4615         letters.
4616
4617         * quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of iswprint.
4618
4619         * strverscmp.c (ISDIGIT): Define.
4620         (strverscmp): Use ISDIGIT, not isdigit.
4621
4622 2000-01-17  Paul Eggert  <eggert@twinsun.com>
4623
4624         * nanosleep.c (nanosleep):
4625         Don't use SA_INTERRUPT to decide whether to call sigaction, as
4626         POSIX.1 doesn't require SA_INTERRUPT and some systems
4627         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
4628         it's been part of POSIX.1 since day 1 (in 1988).
4629
4630 2000-01-17  Jim Meyering  <meyering@lucent.com>
4631
4632         * interlock: Remove unused file.  Reported by François Pinard.
4633
4634 2000-01-16  Paul Eggert  <eggert@twinsun.com>
4635
4636         * quotearg.c (quotearg_buffer_restyled): Do not quote
4637         alert, backslash, formfeed, and vertical tab unnecessarily in
4638         shell quoting style.
4639
4640 Local Variables:
4641 version-control: never
4642 End: