* lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
[pspp] / lib / ChangeLog
1 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
2
3         * glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
4         to avoid a collision with bits/local_lim.h in glibc.
5         All uses changed.  Problem reported by Dmitry V. Levin in
6         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
7
8         * regex_internal.c (build_wcs_upper_buffer): Fix portability
9         bugs in int versus size_t comparisons.
10         (re_string_context_at): Fix bug where the code assumed that
11         Idx is signed.
12
13         Use bool where appropriate.
14         * regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
15         All callers changed.
16         (calc_eclosure_iter): Likewise, for ROOT arg.
17         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
18         (build_charclass_op): Likewise, for NON_MATCH arg.
19         * regex_internal.c (re_string_allocate, re_string_construct):
20         (re_string_construct_common): Likewise, for ICASE arg.
21         * regexec.c (re_search_2_stub, re_search_stub):
22         Likewise, for RET_LEN arg.
23         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
24         (set_regs): Likewise, for FL_BACKTRACK arg.
25         * regcomp.c (re_compile_fastmap_iter, optimize_utf8):
26         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
27         (calc_eclosure_iter, parse_bracket_exp):
28         Use bool for internal variables that are booleans.
29         * regexec.c (re_search_internal, check_matching, proceed_next_node):
30         (set_regs, build_sifted_states, sift_states_bkref):
31         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
32         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
33         (find_collation_sequence_value):
34         Likewise.
35         * regex_internal.c (re_node_set_insert, re_node_set_insert_last):
36         (re_node_set_compare):
37         Return bool, not int. All callers changed.
38         * regexec.c (check_halt_node_context, check_dst_limits):
39         (build_trtable, check_node_accept): Likewise.
40         * regex_internal.h: Include stdbool.h.
41
42         Fix bugs uncovered when converting to bool.
43         * regcomp.c (calc_eclosure_iter): Check for storage allocation
44         failure instead of charging ahead blindly.
45         * regex_internal.c (register_state): Likewise.
46         * regexec.c (re_search_2_stub): Use simpler method than boolean
47         for freeing internal storage.
48         (group_nodes_into_DFA_states): Use unsigned int, not int, for
49         bitset pieces used as boolean, to avoid undefined behavior
50         on hosts that do int overflow checking.
51
52 2005-08-31  Derek Price  <derek@ximbiot.com>
53
54         * getdelim.c (getdelim): Return EOF on EOF.
55         Reported by Larry Jones <lawrence.jones@ugs.com>.
56
57 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
58
59         * regex_internal.c (re_string_reconstruct): Don't assume buffer
60         lengths fit in regoff_t; this isn't true if regoff_t is the same
61         width as size_t.
62         * regex.c (re_search_internal): 5th arg is LAST_START
63         (= START + RANGE) instead of RANGE.  This avoids overflow
64         problems when regoff_t is the same width as size_t.
65         All callers changed.
66         (re_search_2_stub): Check for overflow when adding the
67         sizes of the two strings.
68         (re_search_stub): Check for overflow when adding START
69         to RANGE; if it occurs, substitute the extreme value.
70
71 2005-08-31  Jim Meyering  <jim@meyering.net>
72
73         * regcomp.c (search_duplicated_node): Make first pointer arg
74         a pointer-to-const.
75         * regex_internal.c (create_ci_newstate, create_cd_newstate):
76         (register_state): Likewise.
77         * regexec.c (search_cur_bkref_entry, check_dst_limits):
78         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
79         (group_nodes_into_DFAstates): Likewise.
80
81 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
82
83         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
84         old glibc regex code mishandles strings longer than 2**31 bytes.
85         This patch fixes this when the regex code is used in gnulib
86         (i.e., outside glibc).
87
88         This patch should not affect the use of the regex code inside
89         glibc.  No doubt this problem also needs to be handled for glibc
90         as well, but the result will be an incompatible change to the
91         glibc ABI, and the old ABI will have to be supported too.  That
92         can be the the subject for another patch.
93
94         * regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
95         governing whether the rest of this patch is active.  By default,
96         the macro is disabled and the patch has no effect.
97         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
98         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
99         (struct re_pattern_buffer, re_search, re_search_2, re_match):
100         (re_match_2, re_set_registers): Use the new types.
101         * regex_internal.h (Idx, re_hashval_t): New types.
102         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
103         New macros.
104         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
105         (re_string_context_at, bin_tree_t, re_dfastate_t):
106         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
107         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
108         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
109         (re_string_char_size_at, re_string_wchar_at):
110         (re_string_elem_size_at):
111         Use the new types and macros to port to 64-bit hosts.
112         Use unsigned types for internal values, so that the code
113         mostly works even for arrays larger than SSIZE_MAX.
114         * regcomp.c (re_compile_internal, init_dfa, duplicate_node):
115         (search_duplicated_node, calc_eclosure_iter, fetch_number):
116         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
117         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
118         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
119         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
120         (calc_inveclosure, parse_dup_op, build_range_exp):
121         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
122         (fetch_number, create_token_tree, mark_opt_subexp):
123         Likewise.
124         * regex_internal.c (re_string_construct_common, create_ci_newstate):
125         (create_cd_newstate, re_string_allocate, re_string_construct):
126         (re_string_realloc_buffers, build_wcs_upper_buffer):
127         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
128         (re_string_reconstruct, re_string_peek_byte_case):
129         (re_string_fetch_byte_case, re_string_context_at):
130         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
131         (re_node_set_init_copy, re_node_set_add_intersect):
132         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
133         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
134         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
135         (re_acquire_state, re_acquire_state_context, register_state):
136         Likewise.
137         * regex.c (match_ctx_init, match_ctx_add_entry, search_cur_bkref_entry):
138         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
139         (re_search_internal, re_search_2_stub, re_search_stub)
140         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
141         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
142         (update_cur_sifted_state, check_dst_limits):
143         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
144         (check_subexp_limits, sift_states_bkref, merge_state_array):
145         (check_subexp_matching_top, get_subexp, get_subexp_sub):
146         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
147         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
148         (expand_bkref_cache, check_node_accept_bytes):
149         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
150         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
151         (acquire_init_state_context, check_halt_node_context):
152         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
153         (sift_states_backward, clean_state_log_if_needed):
154         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
155         (find_recover_state, transit_state_sb, transit_state_mb):
156         (transit_state_bkref, build_trtable, match_ctx_clean):
157         Likewise.
158         * regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
159         to work around an assumption that REG_MISSING is negative.
160
161         * regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
162         (seek_collating_symbol_entry) [defined _LIBC]:
163         (lookup_collation_sequence_value) [defined _LIBC]:
164         (build_range_exp, build_collating_symbol) [defined _LIBC]:
165         Use prototypes rather than old-style function definitions.
166         * regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
167         (transit_state_sb) [0]:
168         (find_collation_sequence_value) [defined _LIBC]: Likewise.
169
170         * regexec.c (re_search_internal): Simplify update of rm_so and
171         rm_eo.
172
173         * regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
174         (optimize_subexps, lower_subexp):
175         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
176         since the signed shift might overflow.  Use 1u<<31 instead.
177         * regex_internal.h (bitset_set, bitset_clear, bitset_contain): Likewise.
178         * regexec.c (check_dst_limits_calc_pos_1, check_subexp_matching_top):
179         Likewise.
180
181         * regcomp.c (optimize_subexps, lower_subexp):
182         Use CHAR_BIT rather than 8, for clarity.
183         * regexec.c (check_dst_limits_calc_pos_1):
184         (check_subexp_matching_top): Likewise.
185         * regcomp.c (init_dfa): Make table_size unsigned, so that we don't
186         have to worry about portability issues when shifting it left.
187         Remove no-longer-needed test for table_size > 0.
188         * regcomp.c (parse_sub_exp): Do not shift more bits than there are
189         in a word, as the resulting behavior is undefined.
190         * regexec.c (check_dst_limits_calc_pos_1): Likewise;
191         in one case, a <= should have been an <, and in another case the
192         whole test was missing.
193         * regex_internal.h (BYTE_BITS): Remove.  All uses changed to
194         the standard name CHAR_BIT.
195         * regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
196         this is not true on one's complement and signed-magnitude hosts.
197
198         * regex_internal.h (re_sub_match_top_t): Remove unused member
199         next_last_offset.
200         (struct re_dfa_t): Remove unused member states_alloc.
201         * regcomp.c (init_dfa): Don't initialize unused members.
202
203 2005-08-31  Bruno Haible  <bruno@clisp.org>
204
205         * strstr.c: Include <stddef.h>, for NULL.
206         * strcasestr.c: Likewise.
207         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
208
209 2005-08-30  "Oskar Liljeblad" <oskar@osk.mine.nu>
210
211         * iconvme.h: Add prototype for iconv_alloc.
212
213 2005-08-29  Simon Josefsson  <jas@extundo.com>
214
215         * iconvme.c: Fix errno.
216
217 2005-08-29  "Oskar Liljeblad" <oskar@osk.mine.nu>
218
219         * iconvme.c: Split iconv_string into iconv_alloc.
220
221 2005-08-27  Jim Meyering  <jim@meyering.net>
222
223         * fopen-safer.c: Merge minor changes from coreutils.
224         * dup-safer.c: Likewise.
225         * fd-safer.c: Likewise.
226
227         Merge from coreutils.
228         * stdio--.h: New file.
229         * stdlib--.h: New file.
230         * mkstemp-safer.c: New file.
231
232         GNU tar needs these.
233         * pipe-safer.c: New file.
234         * creat-safer.c: New file.
235         * fcntl--.h (creat): Define to creat_safer.
236         * fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
237         * unistd--.h (pipe): Define to pipe_safer.
238         * unistd-safer.h: Declare pipe_safer.
239
240 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
241
242         * regex_internal.h: Remove all references to
243         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
244         or better.
245         (bitset_not, bitset_merge, bitset_not_merge):
246         (bitset_mask, re_string_allocate, re_string_construct):
247         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
248         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
249         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
250         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
251         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
252         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
253         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
254         (re_acquire_state_context):
255         Remove unnecessary forward decls.
256         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
257         Put __attribute at function definition,
258         now that the function decl has been removed.
259         * lib/regex_internal.c (re_string_peek_byte_case):
260         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
261         Likewise.
262
263 2005-08-26  Simon Josefsson  <jas@extundo.com>
264
265         * getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
266         Haible <bruno@clisp.org>.
267
268 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
269
270         * regexec.c (set_regs): Don't alloca with an unbounded size.
271
272         alloca modernization/simplification for regex.
273         * regex.c: Remove portability cruft for alloca.  This no longer
274         needs to be at the start of the file, and can be moved into
275         regex_internal.h and simplified.
276         * regex_internal.h: Include <alloca.h>.
277         (__libc_use_alloca) [!defined _LIBC]: New macro.
278         * regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
279         now works outside glibc.
280
281 2005-08-24  Simon Josefsson  <jas@extundo.com>
282
283         * getpass.c: Add WIN32 implementation.  Conditionalize use of
284         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
285         GLIBC specific code.
286
287 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
288
289         Make regex safe for g++.  This fixes one real bug (an "err"
290         that should have been "*err").  g++ problem reported by
291         Sam Steingold.
292         * regex_internal.h (re_calloc): New macro, consistent with
293         re_malloc etc.  All callers of calloc changed to use re_calloc.
294         * regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
295         not int.  All callers changed.
296         * regcomp.c (re_compile_fastmap_iter): Don't use alloca (mb_cur_max);
297         just use an array of size MB_LEN_MAX.
298         * regexec.c (push_fail_stack): Use re_realloc, not realloc.
299         (find_recover_state): Change "err" to "*err"; this fixes what
300         appears to be a real bug.
301         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
302         versus int.
303
304 2005-08-25  Jim Meyering  <jim@meyering.net>
305
306         * open-safer.c: Include <config.h>.
307         Otherwise, we'd lose LARGEFILE support in any file using
308         e.g. "fcntl--.h"
309
310 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
311
312         * regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
313         * regex.h (regerror): Likewise.
314
315         * regex.c: Do not include <sys/types.h>, as POSIX no longer
316         requires this.  (The code never needed it.)
317
318         * regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
319         All uses of recently-renamed identifiers changed to use the new,
320         POSIX-compliant names.  The code will build and run just fine
321         without these changes, but it's better to eat our own dog food
322         and use the standard-conforming names.
323
324         * regex.h: Fix a multitude of POSIX name space violations.
325         These changes have an effect only for programs that define
326         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
327         do not change anything for programs compiled in the normal way.
328         Also, there is no effect on the ABI.
329
330         (_REGEX_SOURCE): New macro.
331         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
332         defined and _GNU_SOURCE is not; this fixes a name space violation.
333
334         Rename the following macros to obey POSIX requirements.
335         The old names are still visible as macros if _REGEX_SOURCE is defined.
336         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
337         RE_BACKSLASH_ESCAPE_IN_LISTS.
338         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
339         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
340         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
341         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
342         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
343         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
344         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
345         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
346         (REG_INTERVALS): renamed from RE_INTERVALS.
347         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
348         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
349         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
350         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
351         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
352         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
353         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
354         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
355         RE_UNMATCHED_RIGHT_PAREN_ORD.
356         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
357         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
358         (REG_DEBUG): renamed from RE_DEBUG.
359         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
360         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
361         unusual, since we can't clash with the POSIX REG_ICASE.
362         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
363         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
364         (REG_NO_SUB): renamed from RE_NO_SUB.
365         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
366         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
367         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
368         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
369         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
370         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
371         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
372         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
373         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
374         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
375         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
376         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
377         RE_SYNTAX_POSIX_MINIMAL_BASIC.
378         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
379         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
380         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
381         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
382         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
383         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
384         (REG_FIXED): Renamed from REGS_FIXED.
385         (REG_NREGS): Renamed from RE_NREGS.
386
387         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
388         of other REG_* macros, since POSIX says the user is allowed to
389         #undef these macros selectively.
390
391         (reg_errcode_t): Update comment stating what other tables need
392         to be consistent.
393
394         Rename the following enum values to obey POSIX requirements.
395         The old names are still visible as macros.
396         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
397         is not defined, since GNU is supposed to be a superset of POSIX as
398         much as possible, and since we want reg_errcode_t to be a signed
399         type for implementation consistency.
400         (_REG_NOERROR): Renamed from REG_NOERROR.
401         (_REG_NOMATCH): Renamed from REG_NOMATCH.
402         (_REG_BADPAT): Renamed from REG_BADPAT.
403         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
404         (_REG_ECTYPE): Renamed from REG_ECTYPE.
405         (_REG_EESCAPE): Renamed from REG_EESCAPE.
406         (_REG_ESUBREG): Renamed from REG_ESUBREG.
407         (_REG_EBRACK): Renamed from REG_EBRACK.
408         (_REG_EPAREN): Renamed from REG_EPAREN.
409         (_REG_EBRACE): Renamed from REG_EBRACE.
410         (_REG_BADBR): Renamed from REG_BADBR.
411         (_REG_ERANGE): Renamed from REG_ERANGE.
412         (_REG_ESPACE): Renamed from REG_ESPACE.
413         (_REG_BADRPT): Renamed from REG_BADRPT.
414         (_REG_EEND): Renamed from REG_EEND.
415         (_REG_ESIZE): Renamed from REG_ESIZE.
416         (_REG_ERPAREN): Renamed from REG_ERPAREN.
417         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
418         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
419         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
420         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
421
422         (_REG_RE_NAME, _REG_RM_NAME): New macros.
423         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
424         changed.  But support the old name if the new one is not defined
425         and if _REGEX_SOURCE.
426
427         Change the following member names in struct re_pattern_buffer.
428         The old names are still supported if !_REGEX_SOURCE.
429         The new names are always supported, regardless of _REGEX_SOURCE.
430         (re_buffer): Renamed from buffer.
431         (re_allocated): Renamed from allocated.
432         (re_used): Renamed from used.
433         (re_syntax): Renamed from syntax.
434         (re_fastmap): Renamed from fastmap.
435         (re_translate): Renamed from translate.
436         (re_can_be_null): Renamed from can_be_null.
437         (re_regs_allocated): Renamed from regs_allocated.
438         (re_fastmap_accurate): Renamed from fastmap_accurate.
439         (re_no_sub): Renamed from no_sub.
440         (re_not_bol): Renamed from not_bol.
441         (re_not_eol): Renamed from not_eol.
442         (re_newline_anchor): Renamed from newline_anchor.
443
444         Change the following member names in struct re_registers.
445         The old names are still supported if !_REGEX_SOURCE.
446         The new names are always supported, regardless of _REGEX_SOURCE.
447         (rm_num_regs): Renamed from num_regs.
448         (rm_start): Renamed from start.
449         (rm_end): Renamed from end.
450
451         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
452         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
453         Prepend __ to parameter names.
454
455         Undo yesterday's changes.
456
457 2005-08-24  Jim Meyering  <jim@meyering.net>
458
459         Sync from coreutils.
460         * fcntl--.h, fcntl-safer.h, open-safer.c: New files.
461
462 2005-08-21  Bruno Haible  <bruno@clisp.org>
463
464         * lock.h: Add multiple inclusion guard.
465         * tls.h: Add multiple inclusion guard.
466
467 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
468
469         * regex.h (REG_NOSYS)
470         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
471         Define, since POSIX requires it as of 2001.
472         (_REG_ENOSYS) [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
473         New private symbol, used to keep the enum signed in all cases.
474         * regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James Youngman
475         in <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
476
477         * regex_internal.c (re_string_skip_chars, register_state):
478         (calc_state_hash):
479         Remove forward decls; no longer needed now that we use prototypes.
480         * regexec.c (acquire_init_state_context, check_halt_node_context):
481         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
482         (clean_state_log_if_needed): Likewise.
483
484 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
485
486         Fix problems reported by Sam Steingold in
487         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
488         * regexec.c (sift_states_bkref): Fix portability bug: the code
489         assumed that reg_errcode_t is a signed type, which is not
490         necessarily true if _XOPEN_SOURCE is not defined.
491         * regex_internal.c (calc_state_hash): Put 'inline' before type, since
492         some compilers warn about it otherwise.
493
494 2005-08-20  Jim Meyering  <jim@meyering.net>
495
496         * regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
497         of unused local, dfa.
498
499 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
500
501         * regcomp.c (create_initial_state): Remove duplicate decl.
502         (init_word_char, create_initial_state, duplicate_node_closure):
503         (fetch_token, peek_token_bracket, build_range_exp):
504         (build_collating_symbol): Remove forward decls; no longer needed
505         now that we use prototypes.
506
507         * regcomp.c:
508         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
509         (re_compile_fastmap_iter, regcomp, regerror, regfree):
510         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
511         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
512         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
513         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
514         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
515         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
516         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
517         (build_range_exp, build_collating_symbol, parse_bracket_exp):
518         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
519         (build_charclass, build_charclass_op, fetch_number, create_tree):
520         (create_token_tree, mark_opt_subexp, duplicate_tree):
521         Use prototypes rather than old-style definitions.
522
523         * regex_internal.c:
524         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
525         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
526         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
527         (re_string_reconstruct, re_string_peek_byte_case):
528         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
529         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
530         (re_node_set_init_copy, re_node_set_add_intersect):
531         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
532         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
533         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
534         (re_acquire_state, re_acquire_state_context, register_state):
535         (create_ci_newstate, create_cd_newstate, free_state):
536         Likewise.
537         * regexec.c (regexec, re_match, re_search, re_match_2, re_search_2):
538         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
539         (re_search_internal, prune_impossible_nodes):
540         (acquire_init_state_context, check_matching, static):
541         (check_halt_node_context, check_halt_state_context, proceed_next_node):
542         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
543         (update_regs, sift_states_backward, build_sifted_states):
544         (clean_state_log_if_needed, merge_state_array):
545         (update_cur_sifted_state, add_epsilon_src_nodes):
546         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
547         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
548         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
549         (find_recover_state, check_subexp_matching_top, transit_state_mb):
550         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
551         (check_arrival, check_arrival_add_next_nodes):
552         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
553         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
554         (check_node_accept_bytes, check_node_accept, extend_buffers):
555         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
556         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
557         (sift_ctx_init):
558         Likewise.
559
560         * regex_internal.h:
561         (re_string_allocate, re_string_construct, re_string_reconstruct):
562         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
563         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
564         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
565         (re_string_context_at, re_string_peek_byte_case):
566         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
567         is defined, since we now use prototypes always.
568
569         * regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
570         C89 or better.  All uses removed.
571
572 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
573
574         * regex_internal.c (re_acquire_state, re_acquire_state_context)
575         [defined lint]: Suppress bogus uninitialized-variable warnings.
576
577         * regcomp.c (duplicate_node): Return new index, not an error code,
578         and let the caller return REG_ESPACE if out of space.  This
579         removes an uninitialied-variable warning with GCC 4.0.1, and also
580         avoids taking the address of a local variable.  All callers
581         changed.
582
583 2005-08-19  Jim Meyering  <jim@meyering.net>
584
585         * regexec.c (proceed_next_node): Redo local variables to
586         avoid GCC shadowing warnings.
587
588 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
589
590         * regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
591         (re_node_set_insert_last, re_dfa_add_node):
592         Rename local variables to avoid GCC shadowing warnings.
593
594 2005-08-18  Bruno Haible  <bruno@clisp.org>
595
596         * strstr.c (strstr): Fix return value in multibyte case.
597         * strcasestr.c (strcasestr): Likewise.
598
599 2005-08-17  Jim Meyering  <jim@meyering.net>
600
601         Make the %s format (seconds since the epoch) work for a negative
602         number and when used with a zero-padded field width, e.g. %015s.
603
604         * strftime.c (my_strftime): Move the `do_number_sign_and_padding'
605         label so that it precedes the code to set `digits'.  Otherwise,
606         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
607         print `00-22'.  Now, it prints `-0022', as it should.
608
609 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
610
611         * regex.h: Remove useless space-before-tab.  From coreutils.
612
613 2005-08-17  Bruno Haible  <bruno@clisp.org>
614
615         * strcasestr.h: New file.
616         * strcasestr.c: New file.
617
618 2005-08-17  Bruno Haible  <bruno@clisp.org>
619
620         * strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
621         * strstr.c: Completely rewritten, with multibyte locale support.
622
623 2005-08-17  Bruno Haible  <bruno@clisp.org>
624
625         * strcasecmp.c: Use mbuiter.h.
626
627 2005-08-17  Bruno Haible  <bruno@clisp.org>
628
629         * mbuiter.h: New file.
630
631 2005-08-16  Bruno Haible  <bruno@clisp.org>
632
633         * strcasecmp.c (struct mbiter_multi): Remove at_end field.
634         (mbi_init): Update.
635         (mbi_avail, mbi_advance): Let the iteration end before the terminating
636         NUL byte, not after it.
637
638 2005-08-16  Bruno Haible  <bruno@clisp.org>
639
640         * mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
641         the valid ones. Makes the comparison operations transitive:
642         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
643         * strcasecmp.c (strcasecmp): Use mb_casecmp.
644
645 2005-08-16  Bruno Haible  <bruno@clisp.org>
646
647         * strcase.h (strcasecmp): Add note in comments.
648         * strncasecmp.c: Use code from strcasecmp.c.
649         * strcasecmp.c: Use mbchar module. Define private mbiter variant.
650         (strcasecmp): Work correctly in multibyte locales.
651
652 2005-08-16  Bruno Haible  <bruno@clisp.org>
653
654         * strnlen1.h: New file.
655         * strnlen1.c: New file.
656
657 2005-08-16  Bruno Haible  <bruno@clisp.org>
658
659         * mbfile.h: New file.
660
661 2005-08-16  Bruno Haible  <bruno@clisp.org>
662
663         * mbiter.h: New file.
664
665 2005-08-16  Bruno Haible  <bruno@clisp.org>
666
667         * mbchar.h: New file.
668         * mbchar.c: New file.
669
670 2005-08-16  Bruno Haible  <bruno@clisp.org>
671
672         * tls.h: New file, from GNU gettext.
673         * tls.c: New file, from GNU gettext.
674
675 2005-08-15  Bruno Haible  <bruno@clisp.org>
676
677         * regex.h (__restrict_arr): Don't define to __restrict if __cplusplus
678         is defined.
679
680 2005-08-14  Jim Meyering  <jim@meyering.net>
681
682         Sync from coreutils.
683
684         * fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
685         Use the hash-table-based cycle-detection code not just when
686         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
687         Reported by James Youngman in
688         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
689         * fts_.h: Mention that with FTS_LOGICAL, we use FTS_TIGHT_CYCLE_CHECK.
690         * fts.c (fts_cross_check) [FTS_DEBUG]: s/active_dir_ht/fts_cycle.ht/.
691         This lets us compile with -DFTS_DEBUG, once again.
692         * fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
693         * fts.c (fd_safer): Remove decl.
694         Include fcntl--.h rather than unistd-safer.h
695         (fts_safe_changedir): Don't call fd_safer; no longer needed
696         now that we include fcntl--.h.
697
698 2005-08-11  Simon Josefsson  <jas@extundo.com>
699
700         * readline.h, readline.c: New file.
701
702 2005-08-11  Bruno Haible  <bruno@clisp.org>
703
704         * strnlen.h (strnlen): Change parameter name to match comment.
705
706 2005-08-10  Simon Josefsson  <jas@extundo.com>
707
708         * strndup.c: Use strnlen.h.
709
710         * strnlen.h: New file.
711
712 2005-08-02  Simon Josefsson  <jas@extundo.com>
713
714         * getline.h, getline.c: Rewrite.
715
716         * getdelim.h, getdelim.c: New files, ported from glibc.
717
718 2005-07-31  Bruno Haible  <bruno@clisp.org>
719
720         * lock.h (gl_lock_initializer): New macro.
721         (gl_lock_define_initialized): Use it.
722         (gl_rwlock_initializer): New macro.
723         (gl_rwlock_define_initialized): Use it.
724         (gl_recursive_lock_initializer): New macro.
725         (gl_recursive_lock_define_initialized): Use it.
726
727 2005-07-26  Bruno Haible  <bruno@clisp.org>
728
729         * lock.h: Update from GNU gettext.
730         * lock.c: Update from GNU gettext.
731
732 2005-07-18  Bruno Haible  <bruno@clisp.org>
733
734         * lock.h (gl_once_t): New type.
735         (gl_once_define, gl_once): New macros.
736         * lock.c (fresh_once): New variable.
737         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
738         functions.
739
740 2005-07-18  Simon Josefsson  <jas@extundo.com>
741
742         * check-version.c (check_version): Accept identical versions too.
743
744 2005-07-18  Bruno Haible  <bruno@clisp.org>
745
746         * lock.h: New file, from GNU gettext.
747         * lock.c: New file, from GNU gettext.
748
749 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
750
751         * quotearg.c: Add translator comment suggested by Bruno Haible,
752         with a minor change.
753
754 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
755
756         * version-etc-fsf.c (version_etc_copyright): Parameterize the
757         copyright symbol and the year.
758         * version-etc.c (COPYRIGHT_YEAR): New constant.
759         (version_etc_va): Use parameterized copyright notice.
760         Reword to conform to the current GNU coding standards.
761
762 2005-07-11  Simon Josefsson  <jas@extundo.com>
763
764         * size_max.h: New file.
765
766 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
767
768         * argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
769         block of defines.
770
771 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
772        and  Paul Eggert  <eggert@cs.ucla.edu>
773
774         * regcomp.c (init_dfa, build_range_exp): Store __btowc value
775         in wint_t, not wchar_t.  Remove now-unnecessary cast.
776
777 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
778
779         * regex.c, regex.h: Sync from libc.
780         * regcomp.c, regexec_internal.c, regex_internal.h, regexec.c:
781         New files, synced from libc, except that regex_internal.h
782         currently has a small porting fix.
783
784 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
785
786         Remove the dependency of the strftime module on the tzset module.
787         * strftime.c (my_strftime) [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
788         Copy the input structure, to work around some of the bug with
789         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
790         Solaris releases, you should also use the tzset module, but we won't
791         require it as a dependency any more since we don't want LGPLed code
792         to depend on GPLed code.
793
794 2005-07-02  Jim Meyering  <jim@meyering.net>
795
796         * backupfile.c (backup_args): Change a `0' to NULL.
797
798 2005-07-01  Jim Meyering  <jim@meyering.net>
799
800         * chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
801         * getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
802         * save-cwd.c, tempname.c:
803         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
804         and don't include <sys/file.h>).
805
806 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
807
808         * xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
809         declares only 'struct timespec;' (!).
810
811 2005-06-29  Jim Meyering  <jim@meyering.net>
812
813         * mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
814         type name.  Use the variable name instead.
815         * idcache.c (getuser, getuidbyname, getgroup, getgidbyname): Likewise.
816
817 2005-06-28  Simon Josefsson  <jas@extundo.com>
818
819         * check-version.h, check-version.c: New files.
820
821 2005-06-28  Simon Josefsson  <jas@extundo.com>
822
823         * base64.c (base64_encode): Indent.  Rename 'b64' to avoid
824         collision with global variable.  Better indentation.  Don't
825         increment buffer pointer beyond buffer end.  Based on comments
826         from Paul Eggert <eggert@cs.ucla.edu>.
827
828         * base64.h: Indent.
829
830 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
831
832         * canon-host.c (canon-host): Append trailing "," to 0 in
833         initializer of struct addrinfo, as an indication that we don't
834         care how many members the structure has.
835
836 2005-06-24  Derek Price  <derek@ximbiot.com>
837         and Bruno Haible  <bruno@clisp.org>
838
839         Remove stat module & update lstat.
840         * stat.c: Remove this file...
841         (slash_aware_lstat): ...moving this content and its support...
842         * lstat.c (rpl_lstat): ...into here.
843         * lstat.h: New file.
844
845 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
846
847         * mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
848         (ranged_convert): Don't save conversion in a temporary struct.
849         This causes a warning with GCC 4.0.0, and anyway in the typical
850         case it's not worth the extra 100 bytes or so of code.
851         (ranged_convert, __mktime_internal): When calling a function via a
852         pointer P, use P () rather than (*P) (), as we now assume C89 or
853         better.
854
855 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
856
857         * readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
858         "who -r" failed to give output.  Problem reported by Tim Waugh.
859
860         * xmalloc.c (HAVE_GNU_CALLOC): New constant.
861         (xcalloc): Use it to avoid needless tests.
862         Problem reported by Jim Meyering.
863
864 2005-06-16  Jim Meyering  <jim@meyering.net>
865
866         * calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
867         when either N or S is zero.
868
869 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
870
871         * argp.h (__option_is_short): Check upper limit of
872         __key. Isprint() requires its argument to have the value
873         of an unsigned char or EOF.
874
875 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
876
877         * fnmatch.c (fnmatch): If there is an encoding error in a
878         multibyte string or pattern, fall back on unibyte matching.
879         Problem reported by James Youngman.
880
881 2005-06-08  Bruno Haible  <bruno@clisp.org>
882
883         * binary-io.h (fileno): Undefine before defining it. Avoids a gcc
884         warning on mingw.
885
886 2005-06-08  Bruno Haible  <bruno@clisp.org>
887
888         * csharpcomp.h: New file, from GNU gettext.
889         * csharpcomp.c: New file, from GNU gettext.
890         * csharpcomp.sh.in: New file, from GNU gettext.
891
892 2005-06-07  Derek Price  <derek@ximbiot.com>
893
894         Sync from CVS.
895         * glob_.h: Indent nested #ifdef.
896
897 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
898
899         Sync from coreutils.
900         Use "file name" when talking about file names, instead of "filename"
901         or "path", as per the GNU coding standards.
902         * mkdir-p.c: Renamed from makepath.c.
903         (make_dir_parents): Renamed from make_path.  All callers changed.
904         * mkdir-p.h: Likewise.  All includers changed.
905         * filenamecat.c: Renamed from path-concat.c.
906         (file_name_concat): Renamed from path_concat.  All callers changed.
907         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
908         * filenamecat.h: Likewise.  All includers changed.
909         * acl.c: Don't use "path" or "filename" to mean "file name"
910         in comments or local variable names.
911         * basename.c: Likewise.
912         * canonicalize.c, canonicalize.h: Likewise.
913         * dirname.c, dirname.h: Likewise.
914         * euidaccess.c: Likewise.
915         * exclude.c: Likewise
916         * fnmatch_.h, fnmatch_loop.c: Likewise.
917         * fsusage.c, fsuage.h: Likewise.
918         * fts.c, fts_.h: Likewise.
919         * getcwd.c: Likewise.
920         * getloadavg.c: Likewise.
921         * mkstemp.c: Likewise.
922         * mountlist.c, mountlist.h: Likewise.
923         * openat.c, openat.h: Likewise.
924         * readlink-stub.c: Likewise.
925         * readutmp.c, readutmp.h: Likewise.
926         * rename.c: Likewise.
927         * rmdir.c: Likewise.
928         * same.c: Likewise.
929         * savedir.c: Likewise.
930         * stripslash.c: Likewise.
931         * tempname.c: Likewise.
932         * xreadlink.c: Likewise.
933         * exclude.c (excluded_file_name): Renamed from excluded_filename.
934         All uses changed.
935         * exclude.h: Likewise.
936
937         * euidaccess.c (getuid, getgid, getuid, getegid)
938         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
939         * idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
940         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
941         * pathmax.h: Include <limits.h> unconditionally, since other
942         files have been getting away with it for years (MORE/BSD 4.3
943         is extinct now).
944         * userspec.c (getpwnam, getgrnam, getgrgid)
945         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
946
947         * pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
948         Define to 256, not 255, as per modern POSIX.
949
950 2005-06-01  Bruno Haible  <bruno@clisp.org>
951
952         * csharpexec.h: New file, from GNU gettext.
953         * csharpexec.c: New file, from GNU gettext.
954         * csharpexec.sh.in: New file, from GNU gettext.
955
956 2005-05-31  Derek Price  <derek@ximbiot.com>
957             Paul Eggert  <eggert@cs.ucla.edu>
958
959         Sync from cvs.
960         * glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
961
962 2005-05-29  Derek Price  <derek@ximbiot.com>
963             Paul Eggert  <eggert@cs.ucla.edu>
964
965         * glob_.h, glob.c: New files.
966
967 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
968
969         * getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
970
971         * fts.c: Don't worry about debugging on pre-C99-compatible hosts;
972         the configuration hassle isn't worth it.
973         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
974         (LONGEST_MODIFIER, PRIuMAX): Remove.
975
976 2005-05-27  Bruno Haible  <bruno@clisp.org>
977
978         * getlogin_r.h: Remove second include of <stddef.h>.
979
980 2005-05-25  Bruno Haible  <bruno@clisp.org>
981             Derek Price  <derek@ximbiot.com>
982
983         * getlogin_r.h: Simplify API documentation.
984
985 2005-05-25  Derek Price  <derek@ximbiot.com>
986             Paul Eggert  <eggert@cs.ucla.edu>
987
988         * getlogin_r.c, getlogin_r.h: New files.
989
990 2005-05-22  Bruno Haible  <bruno@clisp.org>
991
992         * minmax.h: Include <limits.h> only when it defines MIN, MAX.
993         Also include <sys/param.h> if it defines MIN, MAX.
994         Based on a patch by Derek Price <derek@ximbiot.com>.
995
996 2005-05-22  Bruno Haible  <bruno@clisp.org>
997
998         * stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
999         (INT64_MIN): Fix definition.
1000         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
1001
1002         * stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
1003         NEED_SIGNED_INT_TYPES.
1004
1005         * stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
1006         HAVE_SYSTEM_INTTYPES.
1007
1008 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
1009
1010         * fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
1011         so that unistd-safer.h (GPL'ed code) need not be included.
1012
1013 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
1014
1015         New fts module.
1016         * fts.c: Don't include "cycle-check.h" or "hash.h".
1017         (setup_dir, free_dir): New functions.
1018         (enter_dir, leave_dir): Define trivial
1019         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
1020         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
1021         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
1022         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
1023         Move to fts-cycle.c.
1024         (fts_open): Use setup_dir.
1025         (fts_close): Use free_dir.
1026         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
1027         This adds a label and some gotos, but the alternatives were messier.
1028         Check for memory allocation failure when entering a dir.
1029         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
1030         * fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
1031         (FTS): New member fts_cycle, that is a union that contains the
1032         old active_dir_ht and cycle_state.  All uses changed to mention
1033         fts_cycle.ht and fts_cycle.state.
1034         * fts-cycle.c: New file, containing GPL'ed code migrated out of
1035         fts.c, with the following changes:
1036         (setup_dir, free_dir): New functions.
1037         (enter_dir): Now returns bool.  Return true if successful, false
1038         if memory exhausted.  All callers changed.
1039         Do not bother partly cleaning up on
1040         memory allocation failure; that is free_dir's job.
1041         However, free ad if hash_insert fails, to avoid memory leak.
1042         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
1043         fts->fts_options to see which union member to use.
1044
1045 2005-05-20  Jim Meyering  <jim@meyering.net>
1046
1047         * unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
1048         Now a macro, to pacify GCC.
1049
1050 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
1051
1052         * chown.c (rpl_chown): Return -1 on failure.
1053
1054 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
1055
1056         * canonicalize.c: Include canonicalize.h first, to test interface.
1057         Include <stddef.h> unconditionally, since we assume C89 now.
1058         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
1059         * fts.c: Include fts_.h first, to check interface.
1060         Do not include intprops.h; no longer needed.
1061         Include cycle-check.h and hash.h, since fts_.h no longer does.
1062         Remove unnecessary casts of closedir to void.
1063         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
1064         decide whether to decrement nlinks.
1065         * fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
1066         (FTS): Use struct hash_table * instead of Hash_table, so that
1067         we no longer need to include hash.h here.
1068
1069 2005-05-17  Jim Meyering  <jim@meyering.net>
1070
1071         * fts.c, fts_.h: New files, from coreutils.
1072
1073 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
1074
1075         Sync from coreutils.
1076         * unlinkdir.c, unlinkdir.h: New files.
1077         * gethrxtime.c, gethrxtime.h, getpass.h, mountlist.h, path-concat.c,
1078         regex.h, unlocked-io.h, xtime.h:
1079         White space changes only.
1080         * makepath.c (make_path): Port to hosts where leading "//" is special.
1081         * yesno.c: Include getline.h, not ctype.h.
1082         (yesno): Don't remove leading white space; POSIX doesn't allow it.
1083         Use getline to remove arbitrary restriction on response length.
1084
1085 2005-05-13  Bruno Haible  <bruno@clisp.org>
1086
1087         * stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
1088         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
1089         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
1090         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
1091         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
1092         Add support for 64-bit integers in the MSVC compiler.
1093
1094 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
1095
1096         * byteswap_.h, getsubopt.h, iconvme.h, strsep.c, strsep.h:
1097         Change the initial comment to refer to GPL, not LGPL.
1098         gnulib-tool will change it to LGPL as needed.
1099
1100         * __fpending.c, acl.c, acl.h, alloca_.h, allocsa.c, allocsa.h,
1101         argmatch.c, argmatch.h, argp-ba.c, argp-eexst.c, argp-fmtstream.c,
1102         argp-fmtstream.h, argp-fs-xinl.c, argp-help.c, argp-namefrob.h,
1103         argp-parse.c, argp-pv.c, argp-pvh.c, argp-xinl.c, argp.h, argz.c,
1104         argz_.h, asnprintf.c, asprintf.c, atanl.c, backupfile.c,
1105         backupfile.h, base64.c, base64.h, basename.c, binary-io.h,
1106         byteswap_.h, c-ctype.c, c-ctype.h, c-stack.c, c-stack.h,
1107         c-strtod.c, calloc.c, canon-host.c, canonicalize.c,
1108         canonicalize.h, ceill.c, chdir-long.c, chdir-long.h, chown.c,
1109         classpath.c, classpath.h, cloexec.c, closeout.c, closeout.h,
1110         concatpath.c, config.charset, copy-file.c, copy-file.h,
1111         cycle-check.c, cycle-check.h, diacrit.c, diacrit.h, dirfd.c,
1112         dirfd.h, dirname.c, dirname.h, dummy.c, dup-safer.c, dup2.c,
1113         eealloc.h, error.c, error.h, euidaccess.c, exclude.c, exclude.h,
1114         execute.c, execute.h, exit.h, exitfail.c, exitfail.h, expl.c,
1115         fatal-signal.c, fatal-signal.h, fd-safer.c, file-type.c,
1116         file-type.h, fileblocks.c, filemode.c, filemode.h, findprog.c,
1117         findprog.h, floorl.c, fnmatch.c, fnmatch_.h, fnmatch_loop.c,
1118         fopen-safer.c, free.c, frexpl.c, fsusage.c, fsusage.h,
1119         full-read.c, full-read.h, full-write.c, full-write.h,
1120         fwriteerror.c, fwriteerror.h, gai_strerror.c, gcd.c, gcd.h,
1121         getaddrinfo.c, getaddrinfo.h, getcwd.c, getcwd.h, getdate.h,
1122         getdate.y, getdomainname.c, getdomainname.h, getgroups.c,
1123         gethostname.c, gethrxtime.c, gethrxtime.h, getline.c, getline.h,
1124         getloadavg.c, getndelim2.c, getndelim2.h, getnline.c, getnline.h,
1125         getopt.c, getopt1.c, getopt_.h, getopt_int.h, getpagesize.h,
1126         getpass.c, getpass.h, getsubopt.c, getsubopt.h, gettext.h,
1127         gettime.c, gettimeofday.c, getugroups.c, getusershell.c,
1128         group-member.c, group-member.h, hard-locale.c, hard-locale.h,
1129         hash-pjw.c, hash-pjw.h, hash.c, hash.h, human.c, human.h,
1130         iconvme.c, iconvme.h, idcache.c, inet_ntop.h, intprops.h,
1131         inttostr.c, inttostr.h, isdir.c, javacomp.c, javacomp.h,
1132         javacomp.sh.in, javaexec.c, javaexec.h, javaexec.sh.in,
1133         lbrkprop.h, lchown.c, ldexpl.c, linebreak.c, linebreak.h,
1134         linebuffer.c, linebuffer.h, localcharset.c, localcharset.h,
1135         logl.c, long-options.c, long-options.h, lstat.c, makepath.c,
1136         makepath.h, malloc.c, mathl.h, mbswidth.c, mbswidth.h, md5.c,
1137         md5.h, memcasecmp.c, memcasecmp.h, memchr.c, memcmp.c, memcoll.c,
1138         memcoll.h, memcpy.c, memmem.c, memmem.h, mempcpy.c, mempcpy.h,
1139         memrchr.c, memrchr.h, memset.c, minmax.h, mkdir.c, mkdtemp.c,
1140         mkdtemp.h, mkstemp.c, mktime.c, modechange.c, modechange.h,
1141         mountlist.c, mountlist.h, nanosleep.c, obstack.c, obstack.h,
1142         openat.c, openat.h, pagealign_alloc.c, pagealign_alloc.h,
1143         path-concat.c, path-concat.h, pathmax.h, pathname.h, physmem.c,
1144         physmem.h, pipe.c, pipe.h, poll.c, poll_.h, posixtm.c, posixtm.h,
1145         posixver.c, printf-args.c, printf-args.h, printf-parse.c,
1146         printf-parse.h, progname.c, progname.h, progreloc.c, putenv.c,
1147         quote.c, quote.h, quotearg.c, quotearg.h, raise.c, readlink.c,
1148         readtokens.c, readtokens.h, readtokens0.c, readtokens0.h,
1149         readutmp.c, readutmp.h, realloc.c, ref-add.sin, ref-del.sin,
1150         regex.c, regex.h, rename.c, rmdir.c, rpmatch.c, safe-read.c,
1151         safe-read.h, safe-write.c, safe-write.h, same.c, same.h,
1152         save-cwd.c, save-cwd.h, savedir.c, savedir.h, setenv.c, setenv.h,
1153         settime.c, sh-quote.c, sh-quote.h, sha1.c, sha1.h, sig2str.c,
1154         sig2str.h, sincosl.c, snprintf.c, snprintf.h, sqrtl.c,
1155         stat-macros.h, stat.c, stdbool_.h, stdint_.h, stdio-safer.h,
1156         stpcpy.c, stpcpy.h, stpncpy.c, stpncpy.h, strcase.h, strcasecmp.c,
1157         strchrnul.c, strchrnul.h, strcspn.c, strdup.c, strdup.h,
1158         strerror.c, strftime.c, strftime.h, stripslash.c, strndup.c,
1159         strndup.h, strnlen.c, strpbrk.c, strpbrk.h, strsep.c, strsep.h,
1160         strstr.c, strstr.h, strtod.c, strtoimax.c, strtok_r.c, strtok_r.h,
1161         strtol.c, strtoll.c, strtoul.c, strtoull.c, strverscmp.c,
1162         strverscmp.h, sysexit_.h, tempname.c, time_r.c, time_r.h,
1163         timegm.c, timegm.h, timespec.h, trigl.c, trigl.h, ucs4-utf16.h,
1164         ucs4-utf8.h, unicodeio.c, unicodeio.h, unistd-safer.h,
1165         unlocked-io.h, unsetenv.c, userspec.c, utf16-ucs4.h, utf8-ucs4.h,
1166         utime.c, utimecmp.c, utimecmp.h, utimens.c, vasnprintf.c,
1167         vasnprintf.h, vasprintf.c, vasprintf.h, version-etc-fsf.c,
1168         version-etc.c, version-etc.h, vsnprintf.c, vsnprintf.h,
1169         w32spawn.h, wait-process.c, wait-process.h, xalloc-die.c,
1170         xalloc.h, xallocsa.c, xallocsa.h, xasprintf.c, xgetcwd.c,
1171         xgetcwd.h, xgetdomainname.c, xgetdomainname.h, xgethostname.c,
1172         xmalloc.c, xmemcoll.c, xnanosleep.c, xreadlink.c, xreadlink.h,
1173         xsetenv.c, xsetenv.h, xsize.h, xstrndup.c, xstrndup.h, xstrtod.c,
1174         xstrtod.h, xstrtoimax.c, xstrtol.c, xstrtol.h, xstrtoumax.c,
1175         xtime.h, xvasprintf.c, xvasprintf.h, yesno.c, yesno.h:
1176         Update FSF postal mail address.
1177
1178 2005-05-10  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
1179
1180         * getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
1181         specified in ai_socktype. Fix invalid ai_protocol
1182         check. ai_protocol is usually set to 0 or depending on
1183         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
1184         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
1185         ai_socktype / ai_protocol in the returned addrinfo structure.
1186
1187 2005-05-09  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
1188             Bruno Haible  <bruno@clisp.org>
1189
1190         * inet_ntop.h: New file.
1191         * inet_ntop.c: New file, from glibc with modifications.
1192
1193 2005-05-08  Jim Meyering  <jim@meyering.net>
1194
1195         * classpath.c (PATH_SEPARATOR): Remove insignificant trailing blank.
1196
1197 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
1198
1199         Merge from coreutils.  Among other things,
1200         add bulletproofing for cases where stdin, stdout, or stderr are closed.
1201         * fd-safer.c: New file.
1202         * fcntl-safer.h, open-safer.c: Remove.
1203         * chdir-long.c: Fix comment "fetish" -> "coreutils".
1204         * dup-safer.c: Include unistd-safer.h first.
1205         Don't include errno.h.
1206         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
1207         * file-type.h: Don't assume invoker included sys/stat.h first.
1208         * file-type.c: Rely on file-type.h change.
1209         * getloadavg.c: Include unistd-safer.h.
1210         (getloadavg): Use safer open.
1211         * getusershell.c: Include "stdio-safer.h".
1212         (getusershell): Use safer fopen.
1213         * long-options.c (long_options): Use NULL rather than 0.
1214         * modechange.h (mode_free): Remove; all callers changed to invoke
1215         'free'.
1216         * modechange.c: Likewise.
1217         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
1218         (MODE_DONE): New constant.
1219         (struct mode_change): Remove 'next' member.
1220         (make_node_op_equals): New function; like the old one of the
1221         same name, except it allocates an array.
1222         (mode_compile, mode_create_from_ref): Use it.
1223         (mode_compile): Allocate result as an array, not a linked list.
1224         Parse octal string ourself, so that we catch mistakes like "+0".
1225         (mode_adjust): Arg is an array, not a linked list.
1226         * modechange.c: Include stat-macros.h, xalloc.h.
1227         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
1228         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
1229         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
1230         Remove.  This is now stat-macros.h's job.
1231         (talloc): Remove.  All callers replaced by xalloc, so that
1232         our invokers don't have to worry about reporting memory failures.
1233         (make_node_op_equals): Remove.
1234         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
1235         New constants.
1236         (struct mode_change): Moved here from modechange.h.
1237         (mode_append_entry): Remove.
1238         (mode_compile): Remove MASKED_OPS arg, since it encouraged
1239         apps to have incorrect behavior.  Use simpler algorithm for head
1240         and tail.  Don't futz with umask; that's now the job of mode_adjust.
1241         Detect more invalid usages rather than having somewhat-random behavior.
1242         Don't insert an "a=" action, as that leads to incorrect behavior.
1243         (mode_compile, mode_create_from_ref): Return NULL on error instead
1244         of an enum, since now there's only one way to have an error.  All
1245         callers changed.
1246         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
1247         at the correct time.  Simplify calculation of "+u" and its ilk.
1248         Don't mishandle "+X".
1249         (mode_free): Remove "register" and localize decls.
1250         * modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
1251         (struct mode_change): Move to modechange.c; callers don't
1252         need to see this stuff.
1253         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
1254         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
1255         (mode_change, mode_adjust): Reflect the new signatures noted above.
1256         * nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
1257         that might redefine system include files.
1258         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
1259         (my_usleep): Use NULL rather than (void *) 0.
1260         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
1261         Use siginterrupt to specify that system calls should be interrupted.
1262         (rpl_nanosleep): Move initialization of suspended closer to call of
1263         my_usleep.
1264         * readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
1265         * readutmp.c: Likewise.  Include signal.h, stdbool.h.
1266         (desirable_utmp_entry): New function.
1267         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
1268         using x2nrealloc, to simplify logic.
1269         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
1270         size calculation.  Do not assume utmp file is a regular file.
1271         * readutmp.h (UT_PID): Moved here from ../src/who.c.
1272         (READ_UTMP_CHECK_PIDS): New constant.
1273         * save-cwd.c: Include unistd-safer.h.
1274         (save_cwd): Use fd_safer.
1275         * tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
1276         [!_LIBC] Include "stat-macros.h" instead.
1277         * unistd-safer.h (fd_safer): New decl.
1278
1279 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
1280
1281         * byteswap_.h: New file.
1282
1283 2005-04-25  Albert Chin  <china@thewrittenword.com>
1284
1285         * regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
1286         Toolkit C bug.
1287
1288 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
1289
1290         * getdate.y (zone): Allow relunit_snumber after tZONE, so
1291         that "UTC +1 second" continues to work.  Problem reported
1292         by Dmitry V. Levin.
1293         (relunit_snumber): New rule.
1294         (relunit): Use it.
1295
1296 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
1297
1298         * getdate.y (universal_time_zone_table): New constant.
1299         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
1300         universal_time_zone_table.
1301         (lookup_zone): Prefer universal_time_zone_table to
1302         local_time_zone_table, so that "GMT" time stamps are allowed in
1303         London during the summer.  Problem reported by Ian Abbott.
1304
1305 2005-04-12  Jim Meyering  <jim@meyering.net>
1306
1307         * human.c (humblock): Set *options even when returning due to
1308         xstrtoumax conversion failure.  Thanks to a used-uninitialized
1309         warning from gcc-4.
1310
1311 2005-04-09  Jim Meyering  <jim@meyering.net>
1312
1313         * posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
1314         -Wuninitialized: initialize tm0.tm_year.
1315
1316 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
1317
1318         * getdate.y (parser_control): rels_seen is now a boolean, not a
1319         count, since there's no maximum.  All uses changed.
1320         Add member dsts_seen.
1321         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
1322         not being INT_MAX.
1323         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
1324         Use pc_rels_seen to decide whther a date is absolute.
1325
1326         * getdate.y (number): Don't overwrite year.
1327         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
1328         check.
1329
1330 2005-04-02  Simon Josefsson  <jas@extundo.com>
1331
1332         * getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
1333         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
1334
1335 2005-03-27  Jim Meyering  <jim@meyering.net>
1336
1337         * argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
1338
1339 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
1340
1341         * intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
1342         "one's complement" -> "ones' complement" in comment, as per Knuth.
1343         "value of type" -> "type or expression" in comment.
1344         * mktime.c, strftime.c: Propagate intprops.h comment nits.
1345
1346 2005-03-26  Jim Meyering  <jim@meyering.net>
1347
1348         Comment nits.
1349         * intprops.h: Add the apostrophe in `(one|two)'s complement'.
1350         Correct typos: s/or/of/.
1351
1352 2005-03-23  Jim Meyering  <jim@meyering.net>
1353
1354         * canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
1355
1356 2005-03-21  Jim Meyering  <jim@meyering.net>
1357
1358         Changes imported from coreutils.
1359
1360         * cycle-check.c: Don't include xalloc.h.
1361
1362         * path-concat.c: Don't include assert.h.
1363         (path_concat): Remove assertion that would have triggered
1364         for ABASE starting with more than one slash.
1365         Reported by Andreas Schwab.
1366
1367         * path-concat.c (path_concat): Set *BASE_IN_RESULT
1368         properly when ABASE is an absolute file name.
1369         Correct the description of this function.
1370         Include <assert.h>.
1371         Add an assertion and a test driver.
1372         This fixes a bug introduced on 2004-07-02.
1373         Andreas Schwab reported the resulting failure of cp --parents:
1374         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
1375
1376 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
1377
1378         * strftime.c (my_strftime): If the underlying strftime returns 0
1379         (which shouldn't happen), generate nothing instead of returning 0
1380         immediately, so that nstrftime (NULL, ...) doesn't return 0.
1381
1382 2005-03-16  Bruno Haible  <bruno@clisp.org>
1383
1384         * stdint_.h: Use HAVE_LONG_LONG_64BIT instead of HAVE_LONGLONG_64BIT.
1385
1386 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
1387
1388         * strftime.c (my_strftime): Prepend space to format so that we can
1389         reliably distinguish strftime failure from empty output on POSIX
1390         hosts.
1391
1392 2005-03-08  Paul Eggert  <eggert@cs.ucla.edu>
1393
1394         * iconvme.c (SIZE_MAX): New macro, if not already defined.
1395         (iconv_string): Don't guess a size-zero buffer, as that might cause
1396         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
1397         result would be 'too large', where 'too large' is (heuristically)
1398         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
1399         overflow concerns.  This will prevent some unwanted malloc failures
1400         when the inputs are very large.
1401
1402 2005-03-15  Bruno Haible  <bruno@clisp.org>
1403
1404         * regex.c (byte_re_match_2_internal): Rename local variable 'not' to
1405         'negate'.
1406
1407         * regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
1408         variable.
1409
1410         * regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc results.
1411
1412 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
1413
1414         * mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
1415         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
1416         intprops.h.
1417         * strtol.c: Likewise.
1418
1419 2005-03-14  Simon Josefsson  <jas@extundo.com>
1420
1421         * timegm.h: Use proper prototype CPP guards, reported by Dave Love
1422         <fx@gnu.org>.
1423
1424 2005-03-14  Jim Meyering  <jim@meyering.net>
1425
1426         * strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
1427         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
1428         to be nonzero so that we (and caller) can detect the difference
1429         between a valid zero-length expansion and an error return, even
1430         when the underlying strftime fails before writing anything into
1431         that location.
1432
1433 2005-03-10  Jim Meyering  <jim@meyering.net>
1434
1435         * save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
1436         so that this module works on systems without fchdir.
1437
1438 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
1439
1440         Factor int-properties macros into a single file, except for
1441         glibc-related files.
1442         * intprops.h: New file.
1443         * getloadavg.c: Include it instead of limits.h.
1444         (INT_STRLEN_BOUND): Remove.
1445         * human.c: Include intprops.h.
1446         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
1447         * human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than 302/1000.
1448         * inttostr.h: Include intprops.h instead of limits.h.
1449         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
1450         * mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
1451         for consistency with intprops.h.
1452         (time_t_is_integer, twos_complement_arithmetic): Use them.
1453         * sig2str.h: Include <signal.h>, intprops.h.
1454         (INT_STRLEN_BOUND): Remove.
1455         * strftime.c (TYPE_SIGNED): Remove.
1456         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
1457         * strtol.c: Adjust comments to match intprops.h.
1458         * userspec.c: Include intprops.h.
1459         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
1460         * utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
1461         * utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
1462         instead of rolling our own expressions.
1463         * xstrtol.c: Include xstrtol.h first, to test interface.
1464
1465         * strftime.c: Include <stdbool.h>.  Use bool where appropriate,
1466         instead of int.
1467         (my_strftime): Do not mishandle years close to INT_MAX, by doing
1468         the right thing even if adding 1900 would overflow.  Similarly
1469         for tm_mon + 1 and tm_yday + 1.
1470         Make %Y always equivalent to %C%y, and similarly for %G and %g.
1471         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
1472         (DO_SIGNED_NUMBER): New macro.
1473         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
1474
1475 2005-03-07  Bruno Haible  <bruno@clisp.org>
1476
1477         * pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
1478
1479 2005-03-03  Derek R. Price  <derek@ximbiot.com>
1480             Bruno Haible  <bruno@clisp.org>
1481
1482         * pagealign_alloc.h: New file.
1483         * pagealign_alloc.c: New file.
1484
1485 2005-01-28  Bruno Haible  <bruno@clisp.org>
1486
1487         * stpncpy.h (stpncpy): Define as a macro without arguments, so that
1488         stpncpy.c uses it.
1489
1490 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
1491
1492         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
1493         The workaround isn't strictly needed for POSIX conformance, and
1494         it's too much of a pain to configure and maintain.  We'll ask
1495         people to fix their kernels instead.
1496         * xnanosleep.c: Don't include gethrxtime.h or xtime.h.
1497         (NANOSLEEP_BUG_WORKAROUND): Remove.
1498         (xnanosleep): Remove the workaround.
1499
1500 2005-02-12  Bruno Haible  <bruno@clisp.org>
1501
1502         * vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
1503
1504 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
1505
1506         * gethrxtime.h, gethrxtime.c, xtime.h: New files.
1507         * timespec.h (gettime): Return void, since it always
1508         succeeds now.  All uses changed.
1509         * gettime.c (gettime) Likewise.
1510         [HAVE_NANOTIME]: Prefer nanotime.
1511         Assume gettimeofday succeeds, as POSIX requires.
1512         Assime time () succeeds, since other code already does.
1513         * xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
1514         (timespec_subtract): Remove.
1515         (NANOSLEEP_BUG_WORKAROUND): New constant.
1516         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
1517         things considerably.  Use it only on GNU/Linux hosts, since the
1518         workaround shouldn't be needed elsewhere.
1519
1520 2005-02-24  Bruno Haible  <bruno@clisp.org>
1521
1522         * gettext.h: Update from GNU gettext 0.14.2.
1523
1524 2005-02-24  Bruno Haible  <bruno@clisp.org>
1525
1526         * localcharset.c: Update from GNU gettext 0.14.2.
1527         * config.charset: Update from GNU gettext 0.14.2.
1528
1529 2005-02-22  Simon Josefsson  <jas@extundo.com>
1530
1531         * iconvme.h, iconvme.c: New files, from libc.
1532
1533 2005-02-20  Neil Conway  <neilc@samurai.com>
1534
1535         * xgethostname.c (xgethostname): Check for ENOMEM, which is
1536         returned by OSX/Darwin if the specified buffer is not large
1537         enough for the hostname.
1538
1539 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
1540
1541         * memrchr.h: New file.
1542         * chdir-long.c: Include it.
1543         * memrchr.c [!defined _LIBC]: Include it rather than <string.h>
1544         Don't bother including stddef.h.
1545
1546 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
1547
1548         * argp-help.c (__argp_help): Create a fake struct argp_state and
1549         pass it to _help, otherwise the latter coredumps trying to
1550         dereference state.root_argp.
1551
1552 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
1553
1554         * mountlist.h (MOUNTLIST_H_): New macro, to protect against double
1555         inclusion.
1556         Include <sys/types.h>, for dev_t.
1557         (ME_DUMMY, ME_REMOTE): Move from here....
1558         * mountlist.c (ME_DUMMY, ME_REMOTE): To here.
1559         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
1560         Dmitry V. Levin.
1561         Include mountlist.h first, to test the interface.
1562
1563 2005-01-29  Bruno Haible  <bruno@clisp.org>
1564
1565         * progname.c (program_name): Initialize.
1566         Needed when linking statically on MacOS X.
1567
1568 2005-01-28  Bruno Haible  <bruno@clisp.org>
1569
1570         * javacomp.sh.in: New file, from GNU gettext.
1571         * javacomp.h: New file, from GNU gettext.
1572         * javacomp.c: New file, from GNU gettext.
1573
1574 2005-01-26  Bruno Haible  <bruno@clisp.org>
1575
1576         * javaexec.sh.in: New file, from GNU gettext.
1577         * javaexec.h: New file, from GNU gettext.
1578         * javaexec.c: New file, from GNU gettext.
1579
1580 2005-01-26  Simon Josefsson  <jas@extundo.com>
1581
1582         * gai_strerror.c: Use GPL in header.
1583
1584 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
1585
1586         * argp-help.c (hol_entry_help): Avoid using non-constant
1587         initializers for struct pentry_state.
1588         (__argp_error): Check return value of __asprintf
1589         (__argp_failure): Translate error message
1590
1591         * argp-parse.c: Removed braces around the expansion of N_()
1592
1593 2005-01-21  Jim Meyering  <jim@meyering.net>
1594
1595         * openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
1596         same value as for Solaris 9.
1597
1598         * chdir-long.c (chdir_long): Rewrite to remove limitation on
1599         component length.  This included changing the parameter to be
1600         of type `char *' rather than `char const *'.
1601         * chdir-long.h (chdir_long): Update prototype.
1602
1603         * openat.c (fdopendir, fstatat): New functions.
1604         * openat.h: Include headers required for use of DIR and struct stat.
1605         [AT_SYMLINK_NOFOLLOW]: Define.
1606         (fdopendir, fstatat): Add prototypes.
1607
1608 2005-01-21  Bruno Haible  <bruno@clisp.org>
1609
1610         * classpath.h: New file, from GNU gettext.
1611         * classpath.c: New file, from GNU gettext.
1612
1613 2005-01-20  Simon Josefsson  <jas@extundo.com>
1614
1615         * version-etc-fsf.c: New file, with version_etc_copyright.
1616         * version-etc.c: Remove version_etc_copyright.
1617         * version-etc.h (version_etc_copyright): Use [] instead of * in
1618         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
1619
1620 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
1621
1622         * save-cwd.c (save_cwd): Remove code to support the case
1623         where fchdir is missing or flaky.
1624
1625 2005-01-20  Simon Josefsson  <jas@extundo.com>
1626
1627         * base64.h (isbase64): Add.
1628
1629         * base64.c (isb64): Rename to isbase64, use to_uchar instead of
1630         using a unsigned prototype, don't inline.
1631         (base64_decode): Use it.
1632
1633 2005-01-19  Bruno Haible  <bruno@clisp.org>
1634
1635         * sh-quote.h: New file, from GNU gettext.
1636         * sh-quote.c: New file, from GNU gettext.
1637
1638 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
1639
1640         Merge changes from coreutils, as described below in several
1641         changelogs dated today.
1642
1643         * save-cwd.c: Include "save-cwd.h" before other include files.
1644         (O_DIRECTORY): Remove; not needed here, since "." must be
1645         a directory.  All uses removed.
1646         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
1647         universal on Suns, and we also need to test for IRIX.
1648         Revamp code to use 'if' rather than '#if'.
1649         Avoid unnecessary comparison of cwd->desc to 0.
1650
1651         * utimens.c (futimens): Robustify the previous patch, by checking
1652         for known valid error numbers rather than observed invalid ones.
1653
1654 2005-01-18  Jim Meyering  <jim@meyering.net>
1655
1656         * version-etc.c (version_etc_copyright): Update copyright date.
1657
1658         * utimens.c (futimens): Account for the fact that futimes
1659         can also fail with errno == ENOSYS or errno == ENOENT.
1660         Patch from Dmitry V. Levin.
1661
1662         Change the name of the robust chdir function from chdir to chdir_long.
1663         * save-cwd.c: Include chdir-long.h rather than chdir.h.
1664         (restore_cwd): Use chdir_long, not chdir.
1665         * chdir-long.c: Renamed from chdir.c.
1666         * chdir-long.h: Renamed from chdir.h.
1667         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
1668         Hurd.
1669
1670 2005-01-18  Bob Proulx  <bob@proulx.com>
1671
1672         * obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to simplify
1673         offsetof() macro construct to avoid compile failure with native HP-UX
1674         11.0 ANSI C compiler.
1675
1676 2005-01-06  Bruno Haible  <bruno@clisp.org>
1677
1678         * stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming, redundant
1679         because stpncpy.m4 takes care of it.
1680
1681 2004-01-24  Bruno Haible  <bruno@clisp.org>
1682
1683         * progreloc.c (xstrdup): Define as strdup if no xmalloc should be used.
1684
1685 2003-10-09  Bruno Haible  <bruno@clisp.org>
1686
1687         * progreloc.c: Include xalloc.h instead of xmalloc.h.
1688
1689 2005-01-06  Bruno Haible  <bruno@clisp.org>
1690
1691         * fwriteerror.h (fwriteerror): Change specification to include fclose.
1692         * fwriteerror.c: Include <stdbool.h>.
1693         (fwriteerror): At the end, close the file stream. Record whether
1694         stdout was already closed.
1695
1696 2004-05-27  Bruno Haible  <bruno@clisp.org>
1697
1698         * execute.c (environ): Declare if needed.
1699         * pipe.c (environ): Likewise.
1700         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
1701
1702 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
1703
1704         * human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
1705         definitions to be after all include files, to avoid collisions.
1706         Problem reported by Bob Proulx.
1707
1708 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
1709
1710         * error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
1711         not needed.  This removes a dependency on the gettext module.
1712         [defined _LIBC]: Do not include <libintl.h>; not needed.
1713
1714 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
1715
1716         * c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
1717         HAVE_DECL_STRTOLD.
1718
1719 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
1720
1721         * argp-parse.c: Include <stddef.h>.
1722         (alignof, alignto): New macros.
1723         (parser_init): Don't assume that void * is aligned sufficiently
1724         for struct option.
1725
1726         * getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
1727         need to extend the stack.
1728         (YYINITDEPTH): New macro, so that the initial stack isn't overly
1729         large.
1730
1731 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
1732
1733         * argp-parse.c (parser_init): Avoid arithmetics on void pointers.
1734
1735 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
1736
1737         * alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
1738         Remove now-obsolete comment about AIX.
1739         * getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
1740         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
1741         (YYMAXDEPTH): New macro.
1742
1743 2004-12-18  Bruno Haible  <bruno@clisp.org>
1744
1745         * fatal-signal.c (fatal_signals): Make non-const.
1746         (init_fatal_signals): New function.
1747         (uninstall_handlers, install_handlers): Ignore signals that were set to
1748         SIG_IGN.
1749         (at_fatal_signal): Call init_fatal_signals.
1750         (init_fatal_signal_set): Likewise. Ignore signals that were set to
1751         SIG_IGN.
1752         Reported by Paul Eggert.
1753
1754 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
1755
1756         * getdate.y (textint): New member "negative".
1757         (time_zone_hhmm): New function.
1758         Expect 14 shift-reduce conflicts, not 13.
1759         (o_colon_minutes): New rule.
1760         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
1761         (yylex): Set the "negative" member of signed numbers.
1762
1763 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
1764
1765         Changes imported from coreutils.
1766         * hard-locale.c: Assume <locale.h> exists.
1767         Include "strdup.h".
1768         (GLIBC_VERSION): New macro.
1769         (hard_locale): Assume setlocale exists.
1770         Rewrite to avoid #ifdef.
1771         Use strdup rather than malloc + strcpy.
1772         * human.c: Assume <locale.h> exists.
1773         (human_readable): Assume localeconv exists.
1774
1775 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
1776
1777         * mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
1778         convert T2, not T.  (Imported from libc.)
1779
1780 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
1781
1782         * getcwd.c (is_ENAMETOOLONG): New macro.
1783         (__getcwd.c): Don't restore errno; glibc doesn't.
1784         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
1785         first, falling back to our code only if its results look suspicious.
1786         Ensure that the resulting buffer is only as large as necessary.
1787
1788         * readutmp.c: Include readutmp.h first.
1789         Include <errno.h>, since readutmp.h no longer does that.
1790         * readutmp.h: Don't include <errno.h>,
1791         <sys/param.h>, <time.h>; not needed to establish interface.
1792         (errno): Remove decl.
1793         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
1794         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
1795         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
1796
1797 2004-11-28  Simon Josefsson  <jas@extundo.com>
1798
1799         * base64.h, base64.c: New file.
1800
1801 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
1802
1803         * getcwd.h: New file, which I forgot to check in on 2004-11-25.
1804
1805 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
1806
1807         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
1808         HP's ANSI C compiler.
1809         * fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
1810         Declaring int functions causes warnings on some modern systems and
1811         shouldn't be needed to compile on ancient ones.
1812         * same.c (MIN) [defined MIN]: Don't define, since it's already
1813         defined.
1814
1815         * getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
1816         with the following changes.
1817         (__set_errno): Parenthesize properly.
1818         Include <stdbool.h>.
1819         (MIN, MAX, MATCHING_INO): New macros.
1820         (__getcwd): Define with prototype, not K&R form.
1821         Use heuristics to allocate default buffer on stack if possible.
1822         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
1823         behavior, and to avoid the PATH_MAX limit when computing
1824         ../../../../...
1825         Use MATCHING_INO to compare inode number to file.
1826         Check for arithmetic overflow in size calculations.
1827         Fix bug in reallocation of dot array that caused getcwd to fail
1828         on directories nested deeper than 75.
1829         Be more careful about saving errno on error.
1830         Do not use realloc; use only free+malloc, as this is a bit
1831         more flexible and avoids a needless copy operation.
1832         Do not inspect st_dev and st_ino for symbolic links; POSIX
1833         doesn't specify the latter.
1834         Check for closedir errors.
1835         Avoid needless casts.
1836         Use "#ifdef weak_alias" around weak_alias, to be like other
1837         glibc code.
1838         The following changes to getcwd.c have effect only when used in
1839         gnulib; they have no effect inside glibc proper.
1840         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
1841         as alloca isn't used.
1842         (alloca, __alloca): Likewise.
1843         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
1844         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
1845         unconditionally, as gnulib assumes C89 or better.
1846         Do not include <sys/param.h>.
1847         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
1848         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
1849         better.
1850         (NULL) [!defined NULL]: Remove; we assume C89 or better.
1851         Include <dirent.h> in a way that is compatible with modern Autoconf.
1852         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
1853         New macros, if not already defined.
1854         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
1855         Use "_LIBC", not "defined _LIBC", for consistency.
1856         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
1857         a mempcpy module.
1858         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
1859         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
1860         * xgetcwd.c: David MacKenzie's old code was removed, so give
1861         credit only to Jim Meyering and adjust the copyright dates.
1862         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
1863         <stdlib.h>, <unistd.h>, "pathmax.h".
1864         Instead, include "xgetcwd.h" (first) and "getcwd.h".
1865         (INITIAL_BUFFER_SIZE): Remove.
1866         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
1867
1868 2004-11-23  Jim Meyering  <jim@meyering.net>
1869
1870         * getopt_.h: Remove trailing blanks.
1871
1872 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
1873
1874         * utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
1875         (futimens): New function, which uses futimes if available.
1876         (futimens, utimens): Support timespec==NULL, with same semantics
1877         as utime and utimens.
1878         * utimens.h (futimens): New decl.
1879
1880 2004-11-23  Jim Meyering  <jim@meyering.net>
1881
1882         * __fpending.c: Add comment.
1883
1884 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
1885
1886         * getopt_.h: Re-addition of __getopt_argv_const caused
1887         redefinition warnings. To avoid them, include the defines
1888         in `#if !defined __need_getopt ... #endif'. The only place
1889         where __getopt_argv_const is used is in definitions
1890         of getopt_long and getopt_long_only below, which are as well
1891         protected by `#ifndef __need_getopt'.
1892         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
1893         __need_getopt after including <stdio.h> and <unistd.h> These
1894         headers might have defined it.
1895
1896 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
1897
1898         * getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
1899         New macros.
1900         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
1901         optopt): Use them instead of invoking ## directly; otherwise, the
1902         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
1903
1904 2004-11-19  Bruno Haible  <bruno@clisp.org>
1905
1906         * strtok_r.c: Move comments from here...
1907         * strtok_r.h: ... to here.
1908
1909 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
1910
1911         * realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
1912         might fail.  Problem reported by Yoann Vandoorselaere.
1913         * calloc.c (rpl_calloc): Defend against buggy calloc implementations
1914         that mishandle size_t overflow.
1915
1916 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
1917
1918         * canon-host.c: Include "strdup.h".
1919         (canon_host): Use getaddrinfo if available, so that IPv6 works.
1920         Use strdup instead of malloc/strcpy to duplicate strings.
1921
1922         * human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
1923         (human_space_before_unit): New constant.
1924         * human.c (human_readable): Support it.
1925
1926         * xgetcwd.c: Include <limits.h>, for PATH_MAX.
1927         (xgetcwd): Set errno correctly when failing.
1928         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
1929         the failure is actually due to a PATH_MAX problem.
1930
1931         Further getopt changes to make it more likely that glibc will
1932         buy the changes back.
1933         * getopt.c (POSIXLY_CORRECT): New constant.
1934         (getopt): Use it, so to preserve glibc semantic
1935         * getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
1936         when compiling for libc.
1937         * getopt_.h (__getopt_argv_const): Bring it back.
1938         (getopt_long, getopt_long_only): Use it.
1939
1940         * getopt.c (_getopt_initialize, _getopt_internal_r, _getopt_internal):
1941         New arg POSIXLY_CORRECT.  All callers changed.
1942         (getopt): Argv is now char * const *, as per standard.
1943         (_getopt_internal_r, _getopt_internal): Argv is now char **,
1944         not char *__getopt_argv_const *.
1945         * getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
1946         _getopt_long_only_r): Likewise.
1947         * getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
1948         * getopt_int.h (_getopt_internal, _getopt_internal_r,
1949         _getopt_long_r, _getopt_long_only_r): Likewise.
1950         * getopt_.h (__getopt_argv_const): Remove.
1951         (getopt): Argv is now char * const *, as per standard.
1952
1953         * getdate.y (tORDINAL): New token.
1954         (day, relunit): Allow it for relative times.
1955         (relative_time_table): Use tORDINAL for ordinals.
1956
1957 2004-11-15  Jim Meyering  <jim@meyering.net>
1958
1959         * closeout.c: Include "__fpending.h" once again.
1960         Include <stdbool.h>.
1961         (close_stdout): Don't fail just because stdout was closed initially,
1962         since some programs don't write to stdout in the normal course of
1963         operation (other than --version and --help), and we don't want this
1964         function to make e.g. `touch file >&-' fail.
1965         But do fail if it was closed and someone has tried to write to it.
1966         E.g., `printf foo >&-' must fail.
1967
1968 2004-11-11  Simon Josefsson  <jas@extundo.com>
1969
1970         * strtok_r.h, strtok_r.c: New file.
1971
1972 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
1973
1974         * getopt_.h (__getopt_argv_const): New macro, to be used so that
1975         we can stop lying to compilers about the constness of argv when we
1976         are compiled outside glibc.
1977         (getopt, getopt_long, getopt_long_only): Use it.
1978         * getopt.c (_getopt_initialize, _getopt_internal_r, _getopt_internal,
1979         getopt): Likewise.
1980         * getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
1981         _getopt_long_only_r): Likewise.
1982         * getopt_int.h (_getopt_internal, _getopt_internal_r, _getopt_long_r,
1983         _getopt_long_only_r): Likewise.
1984
1985         * getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
1986         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
1987         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
1988         the other external symbols.
1989         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
1990         declaration, since the above renaming now works around collisions.
1991
1992 2004-11-11  Jim Meyering  <jim@meyering.net>
1993
1994         * linebreak.c: Remove trailing blanks.
1995         * alloca_.h: Likewise.
1996         * acosl.c: Likewise.
1997         * euidaccess.c: Likewise.
1998         * allocsa.h: Likewise.
1999
2000 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
2001
2002         * mktime.c (SHR): New macro, which is a portable
2003         substitute for >> that should work even on Crays.
2004         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
2005         Problem reported by Mark D. Baushke in
2006         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
2007         * getdate.y (SHR): Likewise.
2008         (tm_diff): Use it.
2009         * strftime.c (SHR): Likewise.
2010         (tm_diff): Use it.
2011         * quotearg.c (struct quoting_options): Use unsigned int for
2012         quote_these_too, so that right shifts are well defined.  All uses
2013         changed.
2014
2015 2004-11-10  Simon Josefsson  <jas@extundo.com>
2016
2017         * getaddrinfo.h, getaddrinfo.c: New files.
2018
2019 2004-11-10  Jim Meyering  <jim@meyering.net>
2020
2021         Ensure that no close failure goes unreported.
2022         * closeout.c (close_stdout): Always close stdout.  I.e., don't
2023         return early when it seems there's nothing to flush.
2024         Don't include __fpending.h.
2025
2026 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
2027
2028         * strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
2029
2030 2004-11-05  Bruno Haible  <bruno@clisp.org>
2031
2032         * readlink.c: Include stddef.h, needed for size_t on Woe32.
2033         Reported by Mark D. Baushke <mdb@cvshome.org>.
2034
2035 2004-11-04  Bruno Haible  <bruno@clisp.org>
2036
2037         2004-09-11  Bruno Haible  <bruno@clisp.org>
2038                 * allocsa.valgrind: New file.
2039         2004-02-06  Bruno Haible  <bruno@clisp.org>
2040                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
2041                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
2042                 Reported by Christopher Seip <chris.seip@hp.com>.
2043
2044 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
2045
2046         * xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
2047         with errno == ERANGE if the buffer is too small.
2048         Problem reported by Mark D. Baushke.
2049
2050 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
2051
2052         * xreadlink.c (MAXSIZE): New macro.
2053         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
2054         size does not exceed MAXSIZE.  Avoid cast.
2055         As suggested by Mark D. Baushke in
2056         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
2057         if readlink fails with buffer size just under MAXSIZE, try again
2058         with MAXSIZE.
2059
2060 2004-11-02  Derek R. Price  <derek@ximbiot.com>
2061         and  Paul Eggert  <eggert@cs.ucla.edu>
2062
2063         * getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
2064         (get_date): Overparenthesize to avoid GCC warning.
2065
2066 2004-11-02  Bruno Haible  <bruno@clisp.org>
2067
2068         * setenv.h (unsetenv): Define as a macro if the system's unsetenv()
2069         function returns void.
2070
2071 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
2072
2073         * getpass.c (fflush_unlocked, flockfile, funlockfile)
2074         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
2075         already declared.
2076
2077 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
2078
2079         * getdate.y: Add support for TZ="foo" within a date string.
2080         Fix some bugs near time_t boundaries.  Reject dates with
2081         out-of-range components, e.g., "Sept 31".
2082         Include <stdlib.h>, "setenv.h", "xalloc.h".
2083         (ISDIGIT_LOCALE): Remove; unused.
2084         Note that the TZ and time functions used here are not reentrant.
2085         (mktime_ok, get_tz): New functions.
2086         (TZBUFSIZE): New constant.
2087         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
2088         This requires that we sometimes generate our own TZ="XXX..." setting.
2089
2090 2004-10-27  Derek R. Price  <derek@ximbiot.com>
2091
2092         * mktime.c (not_equal_tm): Remove redundant check.
2093
2094 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
2095
2096         * getdate.y: Use Bison 1.875 features, and some minor
2097         code cleanups.  This change does not affect semantics.
2098         Don't include <stdlib.h>; no longer needed.
2099         Don't include unlocked-io.h; only the "#if TEST" code uses
2100         stdio, and performance isn't crucial there.
2101         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
2102         Bison 1.875 features as described below.
2103         All uses of "PC." replaced by "pc->".
2104         (YYSTYPE): Add a forward declaration.
2105         (yylex, yyerror): Use full prototypes in forward decls.
2106         Use "%pure-parser" rather than obsolescent "%pure_parser".
2107         Use %parse-param and %lex-param instead of obsolescent
2108         YYPARSE_PARAM and YYLEX_PARAM.
2109         (meridian_table, month_and_day_table, time_units_table,
2110         relative_time_table, time_zone_table, military_table,
2111         lookup_zone, lookup_word, get_date):
2112         Use NULL instead of 0 where appropriate.
2113         (to_hour): Avoid abort (), to avoid a dependency on
2114         stdlib.h.
2115         (yyerror, yylex): Now accepts parser_control * arg.
2116         (main) [TEST]: Use '\0' rather than 0 for char.
2117
2118 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
2119
2120         * getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
2121         It's now the caller's responsibility to handle the case where
2122         !HAVE_GETPAGESIZE && !defined getpagesize.
2123
2124         * mktime.c (leapyear): Arg is long int, not int.
2125
2126 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
2127
2128         * argp-fs-xinl.c, argp-xinl.c: Update from glibc.
2129
2130 2004-10-12  Simon Josefsson  <jas@extundo.com>
2131
2132         * getpass.c (fflush_unlocked, flockfile, funlockfile)
2133         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
2134         to real functions.
2135
2136 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
2137
2138         * vsnprintf.h: New file.
2139         * vsnprintf.c: New file.
2140
2141 2004-10-07  Bruno Haible  <bruno@clisp.org>
2142
2143         * snprintf.c (snprintf): Avoid a memory allocation if the result fits
2144         into the provided buffer.
2145
2146 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
2147
2148         * diacrit.c, diacrit.h: Add GPL notice.
2149
2150         * atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL notice.
2151         * atanl.c (atanl): Keep the code as similar to glibc as possible.
2152         * logl.c (logl): Keep the code as similar to glibc as possible.
2153         This avoids a potential constant-folding bug.
2154
2155 2004-10-05  Bruno Haible  <bruno@clisp.org>
2156
2157         * strsep.h: Don't declare strsep() if HAVE_STRSEP.
2158
2159 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
2160
2161         * xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
2162         * xmalloc.c (xmemdup): Likewise.
2163         * xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
2164         XFREE): Remove these long-obsolescent macros.
2165         * xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
2166         * xstrdup.c: Remove.
2167
2168         * regex.c (re_comp): Cast gettext return value to char *,
2169         Problem reported by Martin Neitzel via Mark D. Baushke.
2170
2171 2004-10-04  Simon Josefsson  <jas@extundo.com>
2172
2173         * error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
2174         '#ifdef USE_UNLOCKED_IO'.
2175
2176 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
2177
2178         * argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
2179         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
2180         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
2181         regex.c, sha1.c, version-etc.c, yesno.c:
2182         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
2183         * unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
2184         the includer's responsibility.
2185
2186         Sync from coreutils.
2187
2188         * modechange.c (mode_compile): Don't decrement a pointer that
2189         points to the start of a string, as the C Standard says the
2190         resulting behavior is undefined.
2191
2192         * backupfile.h (enum backuptype): Rename none -> no_backups,
2193         simple -> simple_backups, numbered_existing ->
2194         numbered_existing_backups, numbered -> numbered_backups
2195         to avoid shadowing problems.  All uses changed.
2196         * argmatch.c (enum backuptype) [defined TEST]: Likewise.
2197         * backupfile.c (check_extension, numbered_backup):
2198         Rename locals to avoid shadowing 'basename'.
2199         * backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
2200         once.
2201
2202         * .cppi-disable: Add getopt_.h, getopt_int.h.
2203         * .cvsignore: Add getopt.h.
2204
2205 2004-10-04  Simon Josefsson  <jas@extundo.com>
2206
2207         * memmem.h: New file.
2208         * memmem.c: New file, taken from glibc.
2209
2210 2004-10-02  Jim Meyering  <jim@meyering.net>
2211
2212         * dirfd.h, getpagesize.h: Add copyright notice.
2213
2214 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
2215
2216         * snprintf.c: Remove comments as to why each header is needed.
2217
2218 2004-10-01  Yoann Vandoorselaere <yoann@prelude-ids.org>
2219
2220         * strsep.h: New file.
2221         * strsep.c: New file.
2222
2223 2004-10-01  Simon Josefsson  <jas@extundo.com>
2224
2225         * snprintf.c (snprintf): Handle size==0.
2226
2227 2004-10-01  Simon Josefsson  <jas@extundo.com>
2228             Bruno Haible  <bruno@clisp.org>
2229
2230         * snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
2231         (snprintf): Declare 'args'.
2232
2233 2004-09-30  Simon Josefsson  <jas@extundo.com>
2234
2235         * snprintf.h, snprintf.c: New files.
2236
2237 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
2238
2239         * argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
2240         (hol_entry_help): Never translate an empty string.
2241         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
2242         * argp.h (OPTION_NO_TRANS): New option.
2243
2244 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
2245
2246         * xvasprintf.c: Include xalloc.h.
2247         (xvasprintf): Use xalloc_die, not xmalloc_die.
2248
2249 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
2250
2251         * dummy.c: Change copyright notice to FSF, and license to GPL.
2252
2253 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
2254
2255         * argp-pvh.c (argp_program_version_hook): Provide initial value.
2256         Problem reported by Bruno Haible in:
2257         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
2258
2259 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
2260
2261         * mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
2262         in case some system header has #define'd it.  Problem reported by
2263         Soeren D. Schulze in
2264         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
2265
2266 2004-09-08  Bruno Haible  <bruno@clisp.org>
2267
2268         * stdint_.h.in: New file, taken from GNU clisp.
2269
2270 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
2271
2272         * xvasprintf.h: New file.
2273         * xvasprintf.c: New file.
2274         * xasprintf.c: New file.
2275
2276 2004-09-08  Bruno Haible  <bruno@clisp.org>
2277
2278         * vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting length
2279         is > INT_MAX.
2280         * vasprintf.c (vasprintf): Don't test for length > INT_MAX any more.
2281
2282 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
2283
2284         Import from coreutils.
2285         * userspec.c: Don't use <alloca.h>, so that we don't use alloca on
2286         strings on unbounded length.  alloca's performance benefits aren't
2287         that important here.
2288         (V_STRDUP): Remove.
2289         (parse_with_separator): New function, with most of the internals
2290         of the old parse_user_spec.  Allow user to omit both user and group,
2291         for compatibility with FreeBSD.
2292         Clone only the user name, not the entire spec.
2293         Do not set *uid, *gid unless entirely successful.
2294         Avoid memory leak in some failing cases.
2295         Fix regression for USER.GROUP reported by Dmitry V. Levin in
2296         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
2297         (parse_user_spec): Rewrite to use parse_with_separator.
2298
2299 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
2300
2301         * argp-help.c, argp-parse.c: Use "gettext.h" instead of
2302         its complicated substitute.
2303         * argp-help.c: Include <errno.h>, for program_invocation_short_name
2304         and program_invocation_name.
2305         (__argp_basename) [!_LIBC]: Remove; the only use was
2306         replaced by its body.
2307         (__argp_short_program_name): Change condition from
2308         !defined __argp_short_program_name to
2309         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
2310         to match argp-namefrob.h.
2311         (__argp_failure): Don't assume strerror_r returns char *.
2312         * argp-parse.c (N_): Define unconditionally.
2313         (argp_default_options): Fill out initializers with 0 to avoid
2314         gcc warnings.
2315
2316 2004-08-12  Simon Josefsson  <jas@extundo.com>
2317
2318         * getopt.c, getopt1.c: Remove ELIDE_CODE hack.
2319         * getopt_.h: Renamed from getopt.h.
2320
2321 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
2322
2323         Merge from coreutils.
2324
2325         * fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
2326         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
2327         for Reliant Unix 5.43.
2328
2329         * obstack.c: Include <inttypes.h> and <stdint.h> if available.
2330         (union fooround): Use uintmax_t, not long int.
2331         The rest is a merge from libc:
2332         [defined _LIBC]: Include <shlib-compat.h>.
2333         (_obstack) [defined _LIBC]: Remove after 2.3.4.
2334
2335         * settime.c (settime): Recode to avoid warning with Sun Forte C 6U2.
2336
2337         * strverscmp.c: Convert to UTF-8.
2338
2339 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
2340
2341         * obstack.h (obstack_empty_p):
2342         Don't assume that chunk->contents is suitably aligned.
2343         * obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
2344         Likewise. Problem reported by Benno in
2345         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
2346
2347         * chown.c (rpl_chown): Work even if the file is writeable but not
2348         readable.  This could be improved further but it'd take some work.
2349
2350 2004-08-08  Simon Josefsson  <jas@extundo.com>
2351
2352         * xgethostname.c: Don't include error.h (not used).
2353
2354         * getpass.h: Add.
2355         * getpass.c: Include getpass.h first.
2356
2357 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
2358
2359         * xalloc-die.c: New files.
2360         * xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
2361         All uses removed.
2362         * xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted): Likewise.
2363         Move inclusions of gettext.h, error.h, exitfail.h to xalloc-die.c.
2364         (_, N_, xalloc_die): Move to xalloc-die.c.
2365         * userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
2366         so that we needn't mess with xalloc_msg_memory_exhausted.
2367
2368         * sha1.h: Renamed from sha.h.
2369         (SHA1_H): Renamed from _SHA_H.
2370         (sha1_ctx): Renamed from sha_ctx.
2371         (sha1_init_ctx): Renamed from sha_init_ctx.
2372         (sha1_process_block): Renamed from sha_process_block.
2373         (sha1_process_bytes): Renamed from sha_process_bytes.
2374         (sha1_finish_ctx): Renamed from sha_finish_ctx.
2375         (sha1_read_ctx): Renamed from sha_read_ctx.
2376         (sha1_stream): Renamed from sha_stream.
2377         (sha1_buffer): Renamed from sha_buffer.
2378         * sha1.c: Likewise; renamed from sha.c.
2379         Do not include <sys/types.h>.
2380         Include <stddef.h> rather than <stdlib.h>.
2381
2382 2004-08-08  Bruno Haible  <bruno@clisp.org>
2383
2384         * pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
2385         FILESYSTEM_PREFIX_LEN.
2386         * progreloc.c: Likewise.
2387         * concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
2388
2389 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
2390
2391         Merge from tar.
2392         * argp-help.c (make_hol, hol_append): Don't assume that
2393         SIZE_MAX is a valid preprocessor constant.
2394         (__argp_basename): Change from "#ifndef _LIBC"
2395         to "#ifndef __argp_short_program_name", so that
2396         we don't compile these functions for tar.
2397
2398         More merges from coreutils.
2399         * raise.c, readtokens0.h, readtokens0.c, strftime.h, utimens.h,
2400         utimens.c, utimecmp.h, utimecmp.c, xnanosleep.h, xnanosleep.c,
2401         yesno.h: New files.
2402         * addext.c: Remove; no longer needed.
2403         * yesno.c, argmatch.h, argmatch.c, backupfile.h, backupfile.c,
2404         euidaccess.c, filemode.c, closeout.c, dup2.c, exclude.c,
2405         fileblocks.c, filemode.c, fnmatch.c, fnmtahc_loop.c,
2406         fopen-safer.c, fsusage.c, fsusage.h, ftruncate.c, full-write.c,
2407         getdate.y, getloadavg.c, getugroups.c, hard-locale.c, hard-locale.h,
2408         hash.c, human.c, human.h, lchown.c, lchown.h, makepath.c, makepath.h,
2409         md5.c, md5.h, memchr.c, memcoll.c, memrchr.c, modechange.c,
2410         modechange.h, mountlist.c, mountlist.h, nanosleep.c, posixtm.c,
2411         putenv.c, quotearg.c, quotearg.h, readtokens.c, readutmp.c,
2412         readutmp.h, rmdir.c, safe-read.c, save-cwd.c, savedir.c, setenv.c,
2413         sig2str.c, stat.c, strtoimax.c, strverscmp.c, userspec.c, utime.c,
2414         version-etc.c., xgethostname.c, xmemcoll.c, xreadlink.c, xstrtod.c,
2415         xstrtod.h, xstrtoimax.c, xstrtol.c, xstrtol.h, xstrtoumax.c:
2416         Import changes from coreutils.
2417
2418 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
2419
2420         Merge from coreutils.
2421
2422         * .gdb-history: Remove; this doesn't belong here.
2423
2424         * c-strtod.c, c-strtod.h, c-strtold.c, cycle-check.c,
2425         cycle-check.h, dev-ino.h, canonicalize.h, canonicalize.c,
2426         fcntl-safer.h, fcntl-safer.c, getcwd.c: New files.
2427
2428         * dirname.h: Include <stdbool.h>.
2429         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
2430         for consistency with POSIX terminology.  All uses changed.
2431         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
2432         (strip_trailing_slashes): Use bool for booleans.
2433         * stripslash.c (strip_trailing_slashes): Likewise.
2434
2435         * error.c: Work around bug in OpenBSD 3.4 sterror_r: it
2436         sometimes returns a positive errno value even when it succeeds.
2437         (print_errno_message) [!LIBC]: Fall back on strerror if
2438         __strerror_r fails.
2439
2440         * path-concat.c (mempcpy): Don't define if a system header defines it.
2441         Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
2442         (longest_relative_suffix): New function.
2443         (path_concat): Use it.  Assume first argument is not NULL.
2444         Port to DOS.  Omit redundant separators.
2445         Report an error instead of returning NULL.
2446         Use mempcpy instead of memcpy.
2447         (xpath_concat): Remove: not declared or used.
2448
2449         * same.h: Include <stdbool.h>
2450         (same_name): Return bool, not int.
2451         * same.c (same_name): Likewise.
2452         (errno): Don't declare; we assume C89 or better now.
2453
2454         * stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
2455         if not already defined.
2456
2457         * xgetcwd.c (errno): Don't declare; we assume C89 or better now.
2458         * dup-safer.c (errno): Likewise.
2459
2460 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
2461
2462         * fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
2463         working.
2464
2465 2004-08-03  Simon Josefsson  <jas@extundo.com>
2466
2467         * strdup.h: Only use HAVE_DECL_STRDUP if defined.
2468         * progname.h: Don't include stdbool.h.
2469
2470 2004-08-02  Simon Josefsson  <jas@extundo.com>
2471
2472         * getsubopt.h: New file, with comments from Bruno Haible.
2473         * getsubopt.c: New file, from glibc, but slightly modified based on
2474         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
2475
2476 2004-08-01  Simon Josefsson  <jas@extundo.com>
2477
2478         * xgetdomainname.c: Include stdlib.h, for free().
2479
2480 2004-07-16  Simon Josefsson  <jas@extundo.com>
2481
2482         * dummy.c: New file.
2483
2484 2004-07-16  Bruno Haible  <bruno@clisp.org>
2485
2486         * backupfile.h: Add extern "C" for C++.
2487         * closeout.h: Likewise.
2488         * copy-file.h: Likewise.
2489         * findprog.h: Likewise.
2490         * full-write.h: Likewise.
2491         * pathname.h: Likewise.
2492         * progname.h: Likewise.
2493         * stpcpy.h: Likewise.
2494         * stpncpy.h: Likewise.
2495         * strcase.h: Likewise.
2496         * strstr.h: Likewise.
2497         * xalloc.h: Likewise.
2498
2499         * mbswidth.h: Add extern "C" for C++.
2500         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
2501
2502 2004-07-09  Simon Josefsson  <jas@extundo.com>
2503
2504         * getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
2505         failed without this.)
2506
2507 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
2508
2509         * fchown-stub.c: New file.
2510
2511 2004-06-24  Jim Meyering  <jim@meyering.net>
2512
2513         * obstack.h (obstack_base): Cast to (void *), per documentation.
2514
2515 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
2516
2517         * argz.c, argz_.h: New files, which are autoupdated from libtool.
2518
2519 2004-06-01  Jim Meyering  <jim@meyering.net>
2520
2521         * calloc.c: New file.
2522
2523 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
2524
2525         * getdate.y (yylex): Allow space between sign and number.
2526         Problem reported by Dan Jacobson.
2527
2528 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
2529         and  Jim Meyering  <jim@meyering.net>
2530
2531         Merge from coreutils CVS.
2532
2533         * stat-macros.h: New file, with contents from file-type.h
2534         and coreutils' system.h.
2535         * file-type.c: Include "stat-macros.h".
2536         * file-type.h (file_type): Move all macro definitions to new file,
2537         stat-macros.h.
2538
2539         * chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
2540         Wrap old code with this conditional.
2541         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
2542         function that does not dereference symlinks.
2543         * lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
2544
2545         * xreadlink.c: Include xreadlink.h first, to catch .h file
2546         dependency problems.
2547         (xreadlink): Accept new arg SIZE, for efficiency.
2548         All decls and uses changed.
2549         * xreadlink.h: Include <stddef.h>, for size_t.
2550
2551         * .cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
2552         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
2553
2554         * .cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h, sysexits.h.
2555
2556 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
2557
2558         * xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
2559         macros to be defined.
2560         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
2561         the allocator returns NULL because the requested size is zero.
2562
2563 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
2564
2565         * malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
2566         var.  Add comment explaining why libc still defines it.  This
2567         merges the following patch from glibc:
2568         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
2569
2570 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
2571
2572         * obstack.c (_obstack): Remove unused variable.  It hasn't been
2573         present in glibc since revision 1.1 of this file.
2574         * obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
2575         obstack_alignment_mask, obstack_alloc, obstack_base,
2576         obstack_blank, obstack_blank_fast, obstack_chunk_size,
2577         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
2578         obstack_grow0, obstack_init, obstack_int_grow,
2579         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
2580         obstack_next_free, obstack_object_size, obstack_ptr_grow,
2581         obstack_ptr_grow_fast, obstack_room): Remove declarations of
2582         nonexistent functions.
2583
2584 2004-05-17  Derek R. Price  <derek@ximbiot.com>
2585             Paul Eggert  <eggert@cs.ucla.edu>
2586
2587         * argp-help.c, argp-parse.c: Assume <alloca.h> rather than freecoding.
2588
2589 2004-05-14  Bruno Haible  <bruno@clisp.org>
2590
2591         * vasnprintf.c (VASNPRINTF): Correctly handle the case of a precision
2592         that consists of a '.' followed by an empty digit string.
2593         Patch by Tor Lillqvist <tml@iki.fi>.
2594
2595 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
2596
2597         Port obstack to the AS/400, where pointers are 16 bytes wide and
2598         you cannot cast an integer to a valid pointer.  This patch is
2599         currently waiting to be integrated into glibc; see
2600         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
2601
2602         * obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
2603         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
2604         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
2605         (struct obstack): temp member is now a union of a pointer and
2606         an integer, instead of an integer.  All integer uses changed.
2607         This does not affect the physical layout of struct obstack,
2608         except on hosts (like the AS/400) where the size or alignment of
2609         void * is greater than that of ptrdiff_t.
2610         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
2611         __STDC__)]: Store temporary in pointer member of union, not
2612         integer member.
2613         * obstack.c: Include <stddef.h>, for offsetof.
2614         (struct fooalign): Remove; it doesn't need a name.
2615         (union fooround): Change double to long double, and add void *.
2616         (DEFAULT_ALIGNMENT): Use offsetof to compute.
2617         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
2618         not a macro.  Hence the values are always int; so remove all
2619         casts-to-int in uses.
2620
2621 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
2622             Derek Price  <derek@ximbiot.com>
2623
2624         * alloca.c: Include <alloca.h>, to get our interface.
2625         * alloca_.h: Use __alloca on AIX, so that we don't have to
2626         include <alloca.h> first.  Use C89 prototype for alloca; this
2627         requires including <stddef.h> for size_t.  Use extern "C" if C++.
2628         Use #elif for simplicity, since we can assume C89 now.
2629         Don't try to source the system alloca.h since it will not be found
2630         and to prevent recursively including its replacement.
2631         * fnmatch.c: Include <alloca.h> instead of opencoding.
2632         * regex.c: Likewise.
2633
2634 2004-05-16  Derek Price  <derek@ximbiot.com>
2635             Paul Eggert  <eggert@cs.ucla.edu>
2636
2637         getline cleanup.  This changes the getndelim2 API: both order of
2638         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
2639         no delimiter).
2640
2641         * getline.c: Don't include stddef.h or stdio.h, since our
2642         interface does that.
2643         (getline): Always use getdelim, so that we don't have two
2644         copies of this code.
2645         * getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
2646         if available.
2647         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
2648         (GETNDELIM2_MAXIMUM): New macro.
2649         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
2650         instead of the old practice of delim2==0.  All callers changed.
2651         Return -1 on overflow, instead of returning junk.
2652         Do not set *linesize unless allocation succeeds.
2653         * getndelim2.h: Do not include stddef.h; no longer needed, now
2654         that we include sys/types.h.
2655         * getnline.h: Likewise.
2656         * getndelim2.h (GETNLINE_NO_LIMIT): New macro.
2657         (getndelim2): Reorder arguments.
2658         * getnline.c (getnline, getndelim):
2659         Don't discard the NMAX argument.
2660         (getnline): Invoke getndelim, to avoid code duplication.
2661         * getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
2662         of (size_t) -1 by callers of the getnline family.
2663
2664 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
2665
2666         * nanosleep.c (suspended): Change its type from int to
2667         sig_atomic_t volatile.
2668         (first_call): Make it private to rpl_nanosleep, and have it
2669         be zero initially as that's a bit faster.
2670         (my_usleep): Round up fractional times instead of truncating them,
2671         as this is the usual meaning for 'sleep'.
2672
2673         * gettime.c (gettime): Fall back on `time' if `gettimeofday'
2674         doesn't work.
2675         * settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
2676         (ENOSYS): Define if not defined.
2677         (settime): Fall back on stime if it exists and settimeofday fails.
2678         But don't bother with fallbacks if a method fails with errno == EPERM.
2679
2680 2004-05-11  Jim Meyering  <jim@meyering.net>
2681
2682         Prior to this change, the save_cwd caller required read access to the
2683         current directory on most systems (ones with the fchdir function).
2684
2685         * save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
2686         fails, try write-only, and finally, resort to using xgetcwd.
2687
2688 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
2689
2690         * obstack.c, obstack.h: Import changes from libc.
2691
2692 2004-04-28  Bruno Haible  <bruno@clisp.org>
2693
2694         * findprog.c (find_in_path): Treat Cygwin like Windows, since it also
2695         implicitly appends .exe to executables.
2696         * localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
2697         accepts Windows pathnames.
2698         * pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN): Treat
2699         Cygwin like Windows, since it now accepts Windows pathnames.
2700         * progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN): Treat
2701         Cygwin like Windows, since it now accepts Windows pathnames.
2702         Reported by Derek Robert Price <derek@ximbiot.com>.
2703
2704 2004-04-20  Jim Meyering  <jim@meyering.net>
2705
2706         * getndelim2.c (getndelim2): Upon realloc failure, don't leak memory.
2707
2708 2004-04-20  Jim Meyering  <jim@meyering.net>
2709             Bruno Haible  <bruno@clisp.org>
2710
2711         * localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
2712         memory when realloc fails.
2713
2714 2004-04-18  Jim Meyering  <jim@meyering.net>
2715
2716         * readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc failure,
2717         don't leak memory and do call END_UTMP_ENT.
2718
2719 2004-04-11  Paul Eggert  <eggert@twinsun.com>
2720
2721         * inttostr.h: Include <limits.h> unconditionally, since we assume C89.
2722         (CHAR_BIT): Remove, since we assume C89.
2723         Include <stdint.h> if available, as per current Autoconf CVS advice.
2724
2725 2004-03-30  Paul Eggert  <eggert@twinsun.com>
2726
2727         * cloexec.h, cloexec.c (set_cloexec_flag): Return int
2728         not bool, to be more consistent with Unix conventions.
2729         Suggested by Bruno Haible.
2730
2731         Merge from coreutils.
2732
2733         * imaxtostr.c, inttostr.c, inttostr.h, offtostr.c, umaxtostr.c:
2734         New files.
2735
2736         * getdate.h: Include stdbool.h, and timespec.h instead of
2737         the usual <time.h> dance.
2738         (get_date): Change signature to support fractional time stamps.
2739         All callers changed.
2740         * getdate.y: Include "getdate.h" first, as we can now
2741         assume C89 and don't need to worry about 'const'.
2742         Similarly, include "unlocked-io.h" near start, not in middle.
2743         Include <limits.h>.
2744         (textint.value): Use long int rather than int.
2745         (textint.digits): Use size_t rather than int.
2746         (BILLION, LOG10_BILLION): New constants.
2747         (parser_control): New member rel_ns.  Members day_ordinal,
2748         time_zone, month, day, hour, minutes, rel_year, rel_month,
2749         rel_day, rel_hour, rel_minutes, rel_seconds
2750         are now long int, not int.  Member seconds is now struct timespec,
2751         not int.  New member timespec_seen.  Members dates_seen, days_seen,
2752         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
2753         not int.
2754         (%union.intval): Now long int, not int.
2755         New member timespec.
2756         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
2757         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
2758         (spec): Now is a timespec or an item list.
2759         (timespec, items): New nonterminals.
2760         (time, rel, relunit, number, get_date):
2761         Add support for fractional seconds.
2762         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
2763         (gmtime, localtime, mktime): Remove decls; not needed with C89.
2764         (to_hour): First arg is now long int, not int.
2765         (to_year): Returns long int, not int.
2766         Don't treat year -70 like 70.
2767         (tm_diff): Returns long int, not int.
2768         (lookup_word): Use bool instead of int when appropriate.
2769         (yylex): Use size_t for count, not int.
2770         Detect overflow when parsing large integer constants.
2771         Add support for fractions.
2772         (get_date): Make pointers 'const' if possible.
2773         Use more-portable code to detect integer overflow.
2774         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
2775         Don't use ctime; it's not reliable if the year has >4 digits.
2776
2777         * human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
2778         This is for compatibility with BSD.
2779
2780         * timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
2781         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
2782         From coreutils' system.h.
2783
2784         * userspec.c: Don't include "posixver.h".
2785         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
2786         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
2787         compatible extension.  Simplify code by removing a boolean int
2788         that was always nonzero if a string was nonnull.
2789
2790 2004-03-30  Jim Meyering  <jim@meyering.net>
2791
2792         Merge from coreutils.
2793
2794         * mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
2795
2796         * readtokens.c (readtoken): Don't leak 64 bytes when reading
2797         an empty input stream.
2798
2799         * readtokens.c: Include <stdbool.h>.
2800         (readtoken): Use `size_t' rather than int/long.
2801         All callers adjusted.
2802         Use `bool' rather than `int' where appropriate.
2803         Use memset rather than an explicit loop.
2804         Use x2nrealloc rather than xrealloc.
2805         Allow the use of `\0' as a delimiter.
2806         (readtokens): Likewise.
2807         * readtokens.h (readtoken, readtokens): Update prototypes.
2808
2809 2004-03-30  Bruno Haible  <bruno@clisp.org>
2810
2811         * getloadavg.c (getloadavg): Don't assume setlocale returns
2812         nonnull.
2813
2814 2004-03-29  Paul Eggert  <eggert@twinsun.com>
2815
2816         Merge changes to getloadavg.c from coreutils and Emacs.
2817
2818         * getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
2819         Define to an expression, not to the empty string.
2820         Include cloexec.h and xalloc.h.
2821         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
2822         Use set_cloexec_flag rather than rolling our own.
2823         * cloexec.c, cloexec.h: New files.
2824
2825 2004-03-18  Paul Eggert  <eggert@twinsun.com>
2826
2827         * getopt.h: Sync with libc CVS.
2828
2829 2004-03-18  Paul Eggert  <eggert@twinsun.com>
2830             Bruno Haible  <bruno@clisp.org>
2831
2832         * mbswidth.h: Include <wchar.h> only if HAVE_DECL_MBSWIDTH_IN_WCHAR_H,
2833         not on all platforms that have <wchar.h>.
2834         * mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
2835
2836 2004-03-09  Paul Eggert  <eggert@twinsun.com>
2837
2838         * argp-parse.c, getopt.c, getopt.h, getopt1.c:
2839         Sync with libc CVS.
2840         * getopt_int.h: New file, also synced from libc.
2841
2842 2004-03-07  Paul Eggert  <eggert@twinsun.com>
2843
2844         * c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
2845         '#if' expressions.  Unlike the code it replaces, it does not
2846         depend on (defined _SC_PAGESIZE).  However, it does depend on
2847         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
2848         first reported by Jason Andrade in
2849         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
2850
2851 2004-01-18  Simon Josefsson  <jas@extundo.com>
2852
2853         * strdup.h: New file.
2854         * strdup.c: Include it.
2855         * path-concat.c: Include strdup.h. Drop strdup declaration.
2856         * userspec.c: Include strdup.h. Drop strdup declaration.
2857
2858 2004-02-06  Karl Berry  <karl@gnu.org>
2859
2860         * config.charset: update from gettext 0.14.1.
2861
2862 2004-02-05  Paul Eggert  <eggert@twinsun.com>
2863
2864         Add comments and code, prompted by suggestions from Bruno Haible
2865         for sh-quote.
2866         * quotearg.h (quotearg_alloc): New decl.  Improve the comments
2867         describing the enum quoting_style values.
2868         * quotearg.c (quotearg_alloc): New function.
2869         (quotearg_buffer_restyled): Treat lone { and } as special.
2870         Treat = as special.  Work around bug with older shells
2871         that "see" a '\' that is really the 2nd byte of a multibyte char.
2872         Quote empty string with shell_quoting_style.
2873
2874 2004-02-03  Bruno Haible  <bruno@clisp.org>
2875
2876         * pipe.h: New file, from GNU gettext.
2877         * pipe.c: New file, from GNU gettext.
2878
2879 2004-01-27  Bruno Haible  <bruno@clisp.org>
2880
2881         * execute.h: New file, from GNU gettext.
2882         * execute.c: New file, from GNU gettext.
2883         * w32spawn.h: New file, from GNU gettext.
2884
2885 2004-01-23  Paul Eggert  <eggert@twinsun.com>
2886
2887         Exit-status fix from coreutils.
2888
2889         Use exit_failure consistently in place of EXIT_FAILURE,
2890         so that program exit statuses are consistent on failure.
2891
2892         * argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
2893         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
2894         * argmatch.h: Comment fix to match the above.
2895         * obstack.c (obstack_exit_failure) [!defined _LIBC]:
2896         Now a macro referring to exit_failure, instead of a separate
2897         variable.  Include "exitfail.h" to get it.
2898         * xstrtol.h: Include "exitfail.h".
2899         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
2900
2901         * long-options.c (parse_long_options): Use prototype
2902         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
2903         for clarity.
2904
2905 2004-01-21  Jim Meyering  <jim@meyering.net>
2906
2907         * mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
2908         so as not to conflict with a different-sized __mktime_internal
2909         function in GNU libc.
2910         * timegm.c (__mktime_internal) [!_LIBC]: Likewise.
2911         Problem building statically-linked `ls' reported by Michael Brunnbauer.
2912
2913 2004-01-18  Paul Eggert  <eggert@twinsun.com>
2914
2915         Merge from diffutils.
2916
2917         * file-type.c (file_type): Add typed memory objects.
2918         * file-type.h (S_TYPEISTMO): New macro.
2919
2920         * c-stack.h (c_stack_action): Remove argv argument.
2921         * c-stack.c (c_stack_action): Likewise.  All uses changed.
2922         (die): Don't calculate message unless segv_action returns.
2923         (get_stack_location, min_address_from_argv, max_address_from_argv,
2924         volatile stack_base, volatile_stack_size): Remove.
2925         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
2926         that every segmentation violation is a stack overflow.  (Ouch!)
2927         See Debian bug 136249 (still outstanding) for more info about why
2928         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
2929
2930 2003-11-30  Bruno Haible  <bruno@clisp.org>
2931
2932         Safer stack allocation.
2933         * setenv.c: Include allocsa.h.
2934         (alloca): Remove fallback definition.
2935         (freea): Remove macro.
2936         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
2937         instead of freea.
2938
2939 2003-10-17  Bruno Haible  <bruno@clisp.org>
2940
2941         * binary-io.h: Avoid warnings on Cygwin.
2942
2943 2003-12-28  Bruno Haible  <bruno@clisp.org>
2944
2945         * wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
2946         * wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE specially.
2947
2948 2003-11-28  Bruno Haible  <bruno@clisp.org>
2949
2950         * wait-process.c (cleanup_slaves): Use ANSI C declaration.
2951
2952 2003-11-27  Bruno Haible  <bruno@clisp.org>
2953
2954         * wait-process.c: On Windows, include windows.h. Needed on mingw.
2955
2956 2003-11-17  Bruno Haible  <bruno@clisp.org>
2957
2958         * wait-process.c (wait_process): Disable the 2003-10-31 waitid() patch.
2959
2960 2003-11-24  Bruno Haible  <bruno@clisp.org>
2961
2962         * xallocsa.h: New file, from GNU gettext.
2963         * xallocsa.c: New file, from GNU gettext.
2964
2965 2003-11-24  Bruno Haible  <bruno@clisp.org>
2966
2967         * allocsa.h: New file, from GNU gettext.
2968         * allocsa.c: New file, from GNU gettext.
2969
2970 2003-11-24  Bruno Haible  <bruno@clisp.org>
2971
2972         * eealloc.h: New file.
2973
2974 2004-01-15  Jim Meyering  <jim@meyering.net>
2975
2976         Merge from coreutils.
2977
2978         * md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
2979         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
2980         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
2981
2982         * posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
2983         optional configure-time default.
2984
2985         * version-etc.c (version_etc_copyright): Update copyright date.
2986
2987         * xreadlink.c (xreadlink): Correct outdated comment.
2988
2989 2004-01-15  Paul Eggert  <eggert@twinsun.com>
2990
2991         Merge from coreutils.
2992
2993         * posixver.c: Include posixver.h.
2994
2995         * same.c: Include <stdbool.h>, <limits.h>.
2996         (_POSIX_NAME_MAX): Define if not defined.
2997         (MIN): New macro.
2998         (same_name): If file names are silently truncated, report
2999         that the file names are the same if they are the same after
3000         the silent truncation.
3001
3002         * xstrtod.h (xstrtod): Accept an extra arg, specifying the
3003         conversion function.
3004         * xstrtod.c (xstrtod): Likewise.  All callers changed to
3005         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
3006         longer needed.
3007
3008 2004-01-14  Paul Eggert  <eggert@twinsun.com>
3009
3010         * fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
3011         with like-named macro in fnmatch.c.
3012         (EXT): Use an internal constant instead.
3013
3014         Merge fnmatch patches from glibc.
3015         * fnmatch.c (mbsinit): Remove define.
3016         Add libc_hidden_ver (__fnmatch, fnmatch).
3017         * fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
3018         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
3019
3020 2003-12-14  Karl Berry  <karl@gnu.org>
3021
3022         * config.charset: update from gettext-runtime.
3023
3024 2003-12-03  Paul Eggert  <eggert@twinsun.com>
3025
3026         * getgroups.c (getgroups): xmalloc takes one argument, not two.
3027         Bug reported by Alfred M. Szmidt.
3028
3029 2003-11-29  Karl Berry  <karl@gnu.org>
3030
3031         * argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
3032
3033 2003-11-23  Paul Eggert  <eggert@twinsun.com>
3034             Bruno Haible  <bruno@clisp.org>
3035
3036         * printf-parse.h: Don't include sys/types.h.
3037         (ARG_NONE): New macro.
3038         (char_directive): Change type of *arg_index fields to size_t.
3039         * printf-parse.c: Don't include sys/types.h.
3040         (SSIZE_MAX): Remove macro.
3041         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
3042         Remove unnecessary overflow check.
3043         * vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
3044         fields.
3045
3046 2003-11-24  Paul Eggert  <eggert@twinsun.com>
3047
3048         * alloca.c: Remove dependency on xalloc module.
3049         (xalloc_die): Remove.
3050         (memory_full) [!defined emacs]: New macro.
3051         [!defined emacs]: Don't include xalloc.h.
3052         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
3053         address arithmetic overflows.  Change datatypes a bit to avoid
3054         unnecessary casts.
3055
3056 2003-11-22  Jim Meyering  <jim@meyering.net>
3057
3058         * xmalloc.c (x2nrealloc_inline): Fix typos in comments: s/size/size_t/.
3059
3060 2003-11-17  Bruno Haible  <bruno@clisp.org>
3061
3062         * vasnprintf.c (alloca): Remove fallback definition.
3063         (freea): Remove definition.
3064         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
3065         Reported by Paul Eggert.
3066
3067 2003-11-17  Jim Meyering  <jim@meyering.net>
3068
3069         On systems without utime and without a utimes function capable of
3070         dealing with a NULL struct utimbuf* argument, this utime replacement
3071         could -- in unusual circumstances -- leak a file descriptor.
3072         * utime.c: Include <unistd.h> and <errno.h>.
3073         (utime_null): Be sure to close `fd' and to preserve errno.
3074         Reported by Geoff Collyer via Arnold Robbins.
3075
3076 2003-11-16  Paul Eggert  <eggert@twinsun.com>
3077             Bruno Haible  <bruno@clisp.org>
3078
3079         Protect against address arithmetic overflow.
3080         * printf-args.h: Include stddef.h.
3081         (arguments): Change type of field 'count' to size_t.
3082         * printf-args.c (printf_fetchargs): Use size_t instead of
3083         'unsigned int' where appropriate.
3084         * printf-parse.h: Include sys/types.h.
3085         (char_directive): Change type of *arg_index fields to ssize_t.
3086         (char_directives): Change type of fields 'count', max_*_length to
3087         size_t.
3088         * printf-parse.c: Include sys/types.h and xsize.h.
3089         (SSIZE_MAX): Define fallback value.
3090         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
3091         instead of 'int' where appropriate. Check a_allocated, d_allocated
3092         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
3093         * vasnprintf.c: Include xsize.h.
3094         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
3095         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
3096         overflow. Avoid wraparound when converting a width or precision from
3097         decimal to binary.
3098
3099 2003-11-16  Bruno Haible  <bruno@clisp.org>
3100
3101         Update from GNU gettext.
3102         * printf-parse.c: Generalize to it can be compiled for wide strings.
3103         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
3104         * vasnprintf.c: Generalize to it can be compiled for wide strings.
3105         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
3106         SNPRINTF): New macros.
3107         Don't include <alloca.h> if the file is used inside libintl.
3108         (local_wcslen): New function, for Solaris 2.5.1.
3109         (VASNPRINTF): Use it instead of wcslen.
3110
3111 2003-11-16  Bruno Haible  <bruno@clisp.org>
3112
3113         * xsize.h (xmax): New function.
3114         (xsum, xsum3, xsum4): Declare as "pure" functions.
3115
3116 2003-11-12  Paul Eggert  <eggert@twinsun.com>
3117
3118         * xalloc.h: Do not include <limits.h> or <stdint.h>.
3119         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
3120         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
3121         heuristic is just as accurate as far as we know, and it removes a
3122         dependency on size_max.m4 and ptrdiff_max.m4.
3123
3124 2003-11-12  Paul Eggert  <eggert@twinsun.com>
3125
3126         * xstrtol.c (__xstrtol): Remove "break" immediately after
3127         "return", to pacify some unknown compiler.  Problem reported
3128         by Joerg Schilling.
3129
3130 2003-11-11  Bruno Haible  <bruno@clisp.org>
3131
3132         * xsize.h (SIZE_MAX): Remove fallback definition.
3133         * xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
3134         defined.
3135
3136 2003-11-10  Paul Eggert  <eggert@twinsun.com>
3137
3138         * xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
3139         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
3140         rejected some allocations of exactly SIZE_MAX - 2 bytes.
3141         From Bruno Haible.
3142         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
3143         not (size_t) -1, since it's defined here.
3144
3145 2003-11-06  Paul Eggert  <eggert@twinsun.com>
3146
3147         * xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
3148         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
3149         Reject sizes of exactly SIZE_MAX bytes.
3150         * xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
3151         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
3152
3153 2003-11-05  Bruno Haible  <bruno@clisp.org>
3154
3155         * xsize.h: Include limits.h, to avoid a possible collision with
3156         SIZE_MAX defined in <limits.h> on Solaris.
3157
3158 2003-11-04  Bruno Haible  <bruno@clisp.org>
3159
3160         * xsize.h: New file.
3161         * linebreak.c: Include xsize.h.
3162         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
3163         argument for overflow.
3164         Suggested by Paul Eggert.
3165
3166 2003-10-31  Bruno Haible  <bruno@clisp.org>
3167
3168         * wait-process.c (wait_process): Use waitid with WNOWAIT if available,
3169         to avoid (extremely rare) race condition.
3170         Suggested by Paul Eggert.
3171
3172 2003-11-03  Jim Meyering  <jim@meyering.net>
3173
3174         * userspec.c: Include "userspec.h".
3175         * userspec.h: New file.
3176
3177 2003-10-31  Paul Eggert  <eggert@twinsun.com>
3178
3179         * mountlist.h (struct mount_entry.me_type_malloced): New member.
3180         * mountlist.c (SIZE_MAX): Define if not defined already.
3181         (read_filesystem_list): Set and use me_type_malloced.
3182         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
3183         whatever the type happens to be), for brevity and consistency.
3184         Check for size calculation overflow on Alphas running OSF/1.
3185
3186 2003-10-31  Jim Meyering  <jim@meyering.net>
3187
3188         * hash.c: Include "xalloc.h" for use of xalloc_oversized.
3189
3190         * linebuffer.c: Include <string.h> for declaration of memset.
3191
3192 2003-10-30  Paul Eggert  <eggert@twinsun.com>
3193             Bruno Haible  <bruno@clisp.org>
3194
3195         * vasprintf.c: Include <limits.h>, <stdlib.h>.
3196         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
3197
3198 2003-10-29  Paul Eggert  <eggert@twinsun.com>
3199
3200         * xalloc.h (xalloc_oversized): Now a macro, not a function,
3201         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
3202         no longer needed.
3203         * quotearg.c (quotearg_n_options): Use it.
3204         * group-member.c: Include <stdbool.h>.
3205         (free_group_info): Arg is now const *; don't free arg.
3206         (get_group_info): Now returns bool and accepts struct group_info *,
3207         rather than returning a malloc'ed struct group_info *.
3208         All uses changed.  Check for overflow in internal size calculation.
3209
3210         * getusershell.c (readname): Simplify the code by using x2nrealloc
3211         rather than xmalloc/xrealloc.
3212         * linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
3213         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
3214         conformance bug: the old code used a pointer after freeing the
3215         storage that it addressed.
3216         * hash.c (hash_initialize): Simplify the code by using xalloc_oversized
3217         rather than doing it by hand.
3218         * getgroups.c (getgroups): Don't use xrealloc, since we don't need
3219         the buffer preserved.  Use free and xmalloc instead.
3220         * quotearg.c (quotearg_n_options): Likewise.
3221         Use a simpler test for size overflow.  Don't use xalloc_oversized
3222         because unsigned int might be wider than size_t (!); this suggests
3223         that we should switch from unsigned int to size_t for slot numbers.
3224
3225 2003-10-27  Bruno Haible  <bruno@clisp.org>
3226
3227         * stdbool_.h: Better support for BeOS.
3228
3229 2003-10-27  Paul Eggert  <eggert@twinsun.com>
3230
3231         * exclude.c (new_exclude): Use xzalloc rather than xmalloc
3232         to allocate the returned structure.  Do not allocate a subarray,
3233         as x2nrealloc will do that.
3234         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
3235         instead of xnrealloc.
3236         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
3237
3238 2003-10-26  Paul Eggert  <eggert@twinsun.com>
3239
3240         * xalloc.h (xalloc_oversized): New static inline function, for
3241         callers that want to do their own size-overflow checking.  Include
3242         <stdbool.h>, since xalloc_oversized returns bool.
3243         * xalloc.c (array_size_overflow): Remove.  All callers changed
3244         to use xalloc_oversized.
3245
3246         Add two functions x2realloc, x2nrealloc, for programs that grow
3247         arrays dynamically by doubling their sizes.
3248         * xalloc.h (x2realloc, x2nrealloc): New decls.
3249         * xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
3250         New functions.
3251
3252         Port to C99 semantics for 'inline' of external functions.
3253         Bug reported by Bruno Haible.
3254         * xmalloc.c (xnmalloc_inline): New static inline function,
3255         with the old contents of xnmalloc.
3256         (xnmalloc, xmalloc): Use it.
3257         (xnrealloc_inline): New static inline function,
3258         with the old contents of xnrealloc.
3259         (xnrealloc, xrealloc): Use it.
3260
3261         * alloc.c (alloca): xmalloc cannot return NULL, so don't test for that.
3262
3263 2003-10-25  Paul Eggert  <eggert@twinsun.com>
3264
3265         Fix several address-calculation bugs in the hash modules,
3266         plus some minor code cleanup.
3267
3268         * hash.h: Include <stdbool.h>, for bool.
3269         * hash.c: Don't include <stdbool.h>, since hash.h does it now.
3270         * hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
3271         hash_get_n_entries, hash_get_max_bucket_length,
3272         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
3273         hash_rehash): Use size_t rather than unsigned.
3274         * hash.c (struct hash_table, hash_get_n_buckets,
3275         hash_get_n_buckets_used, hash_get_n_entries,
3276         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
3277         hash_get_entries, hash_do_for_each, hash_string, is_prime,
3278         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
3279         Likewise.
3280         (SIZE_MAX): Define if not defined.
3281         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
3282         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
3283         hash_print):
3284         Use const * when possible.
3285         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
3286         (check_tuning): Fix bug: if tuning parameters were very close to
3287         0 or 1, rounding errors could have caused subscript violations.
3288         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
3289         (hash_initialize): Add 'fail:' label
3290         to free table and return NULL, and use it to simplify code.
3291         Use calloc rather than clearing the storage ourself.
3292         (hash_initialize, hash_rehash): Check for arithmetic overflow in
3293         buffer size calculations.
3294         * hash-pjw.h (hash_pjw): Use size_t, not unsigned.
3295         Include <stddef.h>, for size_t.
3296         * hash-pjw.c (hash_pjw): Likewise.
3297         Switch to method described by Bruno Haible.
3298         Include <limits.h>, for CHAR_BIT.
3299         (SIZE_BITS): New macro.
3300
3301 2003-10-21  Paul Eggert  <eggert@twinsun.com>
3302
3303         * getndelim2.c (getndelim2): When size calculation overflows,
3304         ceiling the allocation at NMAX bytes rather than silently
3305         discarding input bytes before NMAX is reached.  This makes
3306         a difference only if NMAX exceeds SIZE_MAX / 2.
3307
3308         * obstack.c: Merge from glibc.
3309         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
3310         Add libc_hidden_def (_obstack_newchunk).
3311         (_obstack_free) [! defined _LIBC]: Remove.
3312         [defined _LIBC]: Make a strong alias from obstack_free, rather than
3313         a clone of the function body.
3314         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
3315         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
3316
3317         * obstack.h: Indenting cleanup, to make it easier to merge with glibc.
3318         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
3319         arg to memcpy.
3320
3321         * obstack.h (obstack_1grow_fast): Properly parenthesize arg.
3322         (obstack_ptr_grow_fast, obstack_int_grow_fast):
3323         Don't use lvalue casts, as GCC plans to remove support for them
3324         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
3325         was also present in the non-GCC version, indicating that this
3326         code had always been buggy and had never been widely used.
3327         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
3328         Use the fast variant of each macro, rather than copying the
3329         definiens of the fast variant; that way, we'll be more likely to
3330         catch future bugs in the fast variants.
3331
3332 2003-10-20  Bruno Haible  <bruno@clisp.org>
3333
3334         * wait-process.h: New file, from GNU gettext.
3335         * wait-process.c: New file, from GNU gettext.
3336
3337 2003-10-19  Jim Meyering  <jim@meyering.net>
3338
3339         * vasnprintf.c (vasnprintf): Work around losing snprintf on HPUX 10.20.
3340
3341 2003-10-16  Paul Eggert  <eggert@twinsun.com>
3342
3343         * getgroups.c: Include <errno.h>, <stdlib.h>.
3344         (getgroups): First arg is int, not size_t.
3345         Don't let 'free' mangle errno.
3346
3347 2003-10-16  Jim Meyering  <jim@meyering.net>
3348
3349         * xmalloc.c: Include <string.h>, for declarations of memset and memcpy.
3350
3351 2003-10-15  Paul Eggert  <eggert@twinsun.com>
3352
3353         * exclude.c: Do not include <inttypes.h> or <stdint.h>.
3354         (SIZE_MAX): Remove.
3355         (new_exclude, add_exclude_file): Initial size no longer needs to
3356         be a power of 2.
3357         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
3358         our own address arithmetic overflow checking.
3359
3360         * fnmatch.c (SIZE_MAX): Define if standard headers don't.
3361         (fnmatch): Do not alloca more than 2000 wide characters;
3362         instead, use malloc for large buffers.
3363         Check for address arithmetic overflow, and return -1
3364         with errno set to ENOMEM in that case.
3365         * fnmatch_loop.c (ALLOCA_LIMIT): New macro.
3366         (NEW_PATTERN): Do not alloca more than 8000 bytes;
3367         instead, return -1.  Check for address arithmetic overflow.
3368
3369 2003-10-14  Paul Eggert  <eggert@twinsun.com>
3370
3371         Handle invalid suffixes and overflow independently, so that
3372         callers can treat them independently as needed.  Fix some bugs in
3373         suffix handling, e.g., "100k@" was not diagnosed as an invalid
3374         suffix for a human-readable blocksize.  The major caller-visible
3375         change is the addition of a new
3376         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
3377         that both overflow and suffix chars were found.
3378
3379         * human.c (humblock): Don't check separately for invalid suffix
3380         char; that is xstrtoumax's job (now that its bug is fixed).
3381         * xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
3382         INTMAX_MAX]: New macros.
3383         * xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
3384         TYPE_MAXIMUM): New macros.
3385         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
3386         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
3387         if overflow occurs, as it's what __strtol does and it's more useful
3388         in practice.
3389         (__xstrtol): If __strtol reports some error other than ERANGE,
3390         reflect it to the caller as LONGINT_INVALID.  If it reports
3391         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
3392         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
3393         * xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
3394         value.
3395         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
3396         * xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
3397         * xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
3398         [defined UINTMAX_MAX]: New macros.
3399
3400 2003-10-14  Bruno Haible  <bruno@clisp.org>
3401
3402         * fatal-signal.h: Improved comments. Suggested by Paul Eggert.
3403         * fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
3404         Also use volatile where needed.
3405
3406 2003-10-12  Paul Eggert  <eggert@twinsun.com>
3407
3408         * xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
3409         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
3410         and define in terms of the other primitives.
3411         * xmalloc.c: Include stdbool.h; do not include exit.h.
3412         (SIZE_MAX): Define if not already defined.
3413         (array_size_overflow): New function.
3414         (xalloc_die): Abort instead of exiting if 'error' returns.
3415         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
3416         (xmalloc, xrealloc): Use them.
3417         (xcalloc): Check for address arithmetic overflow.
3418         * xstrdup.c (xstrdup): Use xclone, since memcpy should be
3419         a bit faster than strcpy.
3420
3421 2003-10-08  Paul Eggert  <eggert@twinsun.com>
3422
3423         Merge getpass from libc, plus a few fixes.
3424
3425         * getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
3426         Include <stdbool.h>.
3427         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
3428         __fsetlocking to empty.
3429         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
3430         do include <bits/libc-lock.h>.
3431         Do not include <fcntl.h>; not needed.
3432         [_LIBC]: Include <wchar.h>.
3433         (NOTCANCEL_MODE): New macro.
3434         (flockfile, funlockfile) [_LIBC]: New macros.
3435         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
3436         [!_LIBC]: New macros.
3437         (call_fclose): New function.
3438         (getpass): Use it.  Save tty stream separately; this simplifies the
3439         code and makes it more reliable if stdin happens to equal stdout.
3440         Invoke __fsetlocking on tty.
3441         Handle thread cancellation if needed.
3442         Namespace cleanup (use __tcgetattr, __getline).
3443         Use bool for Booleans.
3444         [USE_IN_LIBIO]: Handle wide streams.
3445         [!_LIBC]: Unconditionally do the fseek, since we don't know what
3446         stream might go where.
3447
3448         * unlocked-io.h: Include <stdio.h>, so that the caller
3449         doesn't have to include <stdio.h> before us.
3450         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
3451         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
3452         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
3453         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
3454         if not declared, so that we can use getpass.c code from libc without
3455         rewriting it.
3456         (flockfile, ftrylockfile, funlockfile): New macros.
3457
3458 2003-10-06  Bruno Haible  <bruno@clisp.org>
3459
3460         * version-etc-2.h: Remove file.
3461         * version-etc-2.c: Remove file.
3462
3463 2003-09-25  Jim Meyering  <jim@meyering.net>
3464             Bruno Haible  <bruno@clisp.org>
3465
3466         This lets translators provide better translations for the
3467         "Written by ..." part of --version output.
3468         * version-etc.h: Include stdarg.h.
3469         (version_etc_copyright): Declare as readonly.
3470         (version_etc): Make this function variadic with a NULL-terminated list
3471         of author name strings.
3472         (version_etc_va): New declaration.
3473         * version-etc.c: Include stdarg.h, stdlib.h.
3474         (version_etc_copyright): Declare as readonly.
3475         (version_etc_va): New function. Provide a different translatable string
3476         for each possible number of authors < 10. Abbreviate when there are 10
3477         authors or more.
3478         (version_etc): Make this function variadic. Call version_etc_va.
3479         Suggestion from Gary V. Vaughan.
3480
3481         * long-options.h (parse_long_options): Change prototype: the authors
3482         string is moved to the end and becomes variadic.
3483         * long-options.c: Include stdarg.h.
3484         (parse_long_options): Make this function variadic, too.
3485         Call version_etc_va, not version_etc.
3486
3487 2003-10-06  Bruno Haible  <bruno@clisp.org>
3488
3489         * fatal-signal.h: New file, from GNU gettext.
3490         * fatal-signal.c: New file, from GNU gettext.
3491
3492 2003-10-04  Karl Berry  <karl@gnu.org>
3493
3494         * argp*: update from libc.
3495
3496 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
3497
3498         * getpass.c (getpass): Use a no-op fseek when switching from input to
3499         output mode on the same stream.
3500
3501 2003-09-29  Paul Eggert  <eggert@twinsun.com>
3502
3503         * strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
3504         Fix arg typo in previous patch.
3505
3506 2003-09-28  Jim Meyering  <jim@meyering.net>
3507
3508         * error.c: Correct cpp indentation.
3509
3510 2003-09-27  Paul Eggert  <eggert@twinsun.com>
3511
3512         * minmax.h (MIN, MAX) [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
3513         Omit the special code that used __typeof__, since we worry that
3514         it could be more trouble than it's worth.  See:
3515         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
3516         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
3517
3518         * free.c: New file.
3519
3520 2003-09-26  Jim Meyering  <jim@meyering.net>
3521
3522         * error.c (error_tail): Move some declarations
3523         into inner scope where the local variables are used.
3524
3525 2003-09-26  Bruno Haible  <bruno@clisp.org>
3526
3527         * stpncpy.h (gnu_stpncpy): New declaration.
3528         (stpncpy): Define as alias for gnu_stpncpy.
3529         * stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
3530
3531 2003-09-26  Paul Eggert  <eggert@twinsun.com>
3532
3533         * error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
3534         (error_tail): Do not loop, reallocating temporary buffer, since
3535         the output cannot contain more wide characters than the input
3536         contains bytes, the size must be big enough already.  This avoids
3537         one potential size overflow calculation.  Check for size overflow
3538         when calculating temporary buffer size.  Free temporary buffer
3539         when done, if it was allocated with malloc; this plugs a memory
3540         leak.  Remove casts from void * to pointers, that are no longer
3541         needed now that we're assuming C89 or better.
3542
3543         Merge error changes from glibc.
3544
3545         * error.c, error.h: Update copyright notice header to match glibc.
3546         * error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
3547         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
3548         Disable cancellation while printing error.
3549         * error.h: Prepend __ to parameter names.
3550
3551 2003-09-25  Karl Berry  <karl@gnu.org>
3552
3553         * argp-fmtstream.c, argp-help.c: update from libc.
3554
3555 2003-09-25  Bruno Haible  <bruno@clisp.org>
3556
3557         * version-etc-2.h: New file, from version-etc.h with modifications.
3558         * version-etc-2.c: New file, from version-etc.c with modifications.
3559
3560 2003-09-25  Simon Josefsson  <jas@extundo.com>
3561
3562         * xgetdomainname.h: New file.
3563         * xgetdomainname.c: New file.
3564
3565 2003-09-25  Simon Josefsson  <jas@extundo.com>
3566             Bruno Haible  <bruno@clisp.org>
3567
3568         * getdomainname.h: New file.
3569         * getdomainname.c: New file.
3570
3571 2003-09-24  Paul Eggert  <eggert@twinsun.com>
3572
3573         * linebuffer.c (freebuffer): Don't free the argument, just
3574         the buffer associated with the argument.  Bug reported by
3575         Simon Josefsson.
3576
3577 2003-09-19  Karl Berry  <karl@gnu.org>
3578
3579         * argp.h: update from libc.
3580
3581 2003-09-16  Paul Eggert  <eggert@twinsun.com>
3582
3583         * linebuffer.c (readlinebuffer): Return NULL immediately upon
3584         input error, instead of returning NULL the next time we are called
3585         (and therefore losing track of errno).
3586
3587 2003-09-15  Paul Eggert  <eggert@twinsun.com>
3588
3589         * getndelim2.c (getndelim2): Don't trash errno when a read
3590         fails, so that the caller gets the proper errno.
3591
3592         * readutmp.c (read_utmp): Likewise.
3593         Check for fstat error.  Close stream and free storage
3594         when failing.
3595
3596 2003-09-14  Bruno Haible  <bruno@clisp.org>
3597
3598         * fwriteerror.h: New file.
3599         * fwriteerror.c: New file.
3600
3601 2003-09-14  Jim Meyering  <jim@meyering.net>
3602
3603         * getloadavg.c: Correct cpp indentation.
3604         * strdup.c: Likewise.
3605         * vasnprintf.c: Likewise.
3606
3607 2003-09-12  Paul Eggert  <eggert@twinsun.com>
3608
3609         * argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
3610         * obstack.c [!defined _LIBC]: Likewise.
3611         * argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
3612         * exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
3613         * exitfail.c: Don't include stdlib.h; no longer needed.
3614
3615         More changes to assume C89 or better.
3616
3617         * error.c (error_tail): Assume vprintf.
3618
3619         * argmatch.c (getenv): Remove decl.
3620         * progreloc.c (get_full_program_name): Define via prototype.
3621         * setenv.c (clearenv): Likewise.
3622         * stpncpy.c: Do not include <string.h> or <sys/types.h>; not
3623         needed.
3624         * strdup.c: Include <stdlib.h>, <string.h> unconditionally.
3625         (malloc, memcpy): Remove decls.
3626         * strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
3627         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
3628         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
3629         (memcpy): Remove macro.
3630         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
3631         (__P): Remove.  All uses removed.
3632         (PTR): Remove.  All uses changed to void *.
3633         (CHAR_BIT, NULL): Remove.
3634         (spaces, zeros, memset_space, memset_zero)
3635         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
3636         Remove.
3637         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
3638         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
3639         Define with prototype.
3640         Remove now-unnecessary prototype decl.
3641         (extra_args_spec): Assume ANSI C.  All uses changed.
3642         (extra_args_spec_iso): Remove.
3643         (my_strftime, emacs_strftimeu): Define via prototype.
3644         * strtod.c: Include <float.h>, <stdlib.h>, <string.h>
3645         unconditionally.
3646         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
3647         * strtoimax.c: Include <stdlib.h> unconditionally.
3648         (strtoul, strtol): Remove decls.
3649         * strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
3650         LONG_MAX): Remove.
3651         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
3652         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
3653         (LOCALE_PARAM_PROTO): New macro.
3654         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
3655         (INTERNAL (strtol), strtol): Define with a prototype.
3656         (PARAMS): Remove.  All uses removed.
3657         * tempname.c: Include <string.h> unconditionally.
3658         * userspec.c: Include <stdlib.h>, <string.h> unconditionally.
3659         * xgethostname.c (main): Define with a prototype.
3660         * xmalloc.c: Include "xalloc.h" first, to check interface.
3661         Include <stdlib.h> unconditionally.
3662         (calloc, malloc, realloc, free): Remove decls.
3663         * xstrtod.c: Include "xstrtod.h" first, to check interface.
3664         Include <stdlib.h> unconditionally.  Sort include file names.
3665         (strtod): Remove.
3666         (xstrtod): Define with a prototype.
3667         * xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
3668         (strtol, strtoul): Remove decls.
3669
3670 2003-09-11  Paul Eggert  <eggert@twinsun.com>
3671
3672         * strndup.c: Don't include <stdio.h>, <sys/types.h>.
3673         Include <stdlib.h>, <string.h> unconditionally.
3674         Remove now-unnecessary cast to char *.
3675         * strnlen.c: Include <string.h> unconditionally.
3676         * yesno.c (yesno): Define with a prototype.
3677
3678 2003-09-10  Bruno Haible  <bruno@clisp.org>
3679
3680         * strcspn.c: Include <string.h> unconditionally.
3681         * strpbrk.c: Include <string.h> unconditionally.
3682         * strstr.c: Include <string.h> unconditionally.
3683         * unicodeio.c: Include <string.h> unconditionally.
3684         * setenv.c: Include <stdlib.h> and <string.h> unconditionally.
3685         * unsetenv.c: Likewise.
3686         * xreadlink.c: Include <stdlib.h> unconditionally.
3687         * yesno.c: Include <stdlib.h> unconditionally.
3688         (rpmatch): Add prototype.
3689
3690 2003-09-10  Jim Meyering  <jim@meyering.net>
3691
3692         * error.c: Correct indentation of cpp directives.
3693
3694 2003-09-09  Paul Eggert  <eggert@twinsun.com>
3695
3696         More K&R removal.
3697
3698         * acosl.c (main): Use a prototype.
3699         * asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
3700         tanl.c: Likewise.
3701
3702         * getloadavg.c (getloadavg, main): Define via prototypes.
3703
3704         * getopt.h (struct option.name): Assume C89, and use 'const'.
3705         (getopt, etopt_long, getopt_long_only, _getopt_internal)
3706         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
3707         with a prototype.
3708         * getopt.c (const): Remove macro.
3709         Include <string.h> unconditionally.
3710         (my_index): Remove; all uses changed to strchr.
3711         (strlen): Remove decl.
3712         (exchange): Remove forward decl; no longer needed.
3713         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
3714         Define with prototype.
3715         * getopt1.c (const): Remove macro.
3716         (getopt_long, getopt_long_only, main): Define with prototype.
3717
3718         * getugroups.c: Include <string.h> unconditionally.
3719
3720         * getusershell.c: Include <stdlib.h> unconditionally.
3721         (getusershell, setusershell, endusershell, readname, main):
3722         Define with prototypes.
3723
3724         * group-member.c: Include group-member.h first.
3725         Include <stdlib.h> unconditionally.
3726
3727         * hard-locale.c: Include hard-locale.h first.
3728         Include <stdlib.h>, <string.h> unconditionally.
3729
3730         * hash.c (free, malloc): Remove decls.
3731         Include <stdlib.h> unconditionally.
3732
3733         * human.c: Include <stdlib.h>, <string.h> unconditionally.
3734         (getenv): Do not declare.
3735
3736         * idcache.c: Include <string.h> unconditionally.
3737
3738         * long-options.c: Include long-options.h first, to test interface.
3739         Include <stdlib.h> unconditionally.
3740
3741         * makepath.c: Include makepath.h first, to test interface.
3742         Include <stdlib.h> and <string.h> unconditionally.
3743
3744         * linebuffer.c: Include <stdlib.h>.
3745         (free): Remove decl.
3746
3747         * malloc.c: Include <stdlib.h>, for malloc; don't bother with stddef.h.
3748         rpl_malloc returns void *, not char *.
3749         * realloc.c (rpl_realloc): Likewise.  Also, define with a prototype.
3750
3751         * md5.h: Include <limits.h> unconditionally.
3752         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
3753         (__P): Remove; all uses removed.
3754         * md5.c: Include "md5.h" first.
3755         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
3756         md5_buffer, md5_process_bytes, md5_process_block):
3757         Define with prototypes.
3758         * sha.h (__P): Remove all uses.  (It wasn't defined??)
3759         * sha.c: Include "sha.h" first.
3760         Include <stdlib.h>, <string.h> unconditionally.
3761
3762         * memchr.c (__ptr_t): Remove; all uses changed to void *.
3763         * memcmp.c (__ptr_t): Likewise.
3764         * memrchr.c (__ptr_t): Likewise.
3765         * memchr.c, memcmp.c, memcoll.c, memrchr.c:
3766         Include <string.h> unconditionally.
3767         * memchr.c, memrchr.c: Include <limits.h> unconditionally.
3768         * memchr.c: Include <stdlib.h> unconditionally.
3769         * memchr.c (LONG_MAX): Remove.
3770         * memrchr.c (LONG_MAX): Likewise.
3771         * memchr.c (__memchr): Define via a prototype.
3772         * memrchr.c (__memrchr): Likewise.
3773         * memcmp.c (__P): Remove, and remove all uses.
3774         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
3775         Remove forward decls; no longer needed.
3776         * memcpy.c, memmove.c, memset.c: Include <stddef.h>.
3777         Use types required by C89 in prototype.
3778
3779         * mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
3780         * savedir.c: Likewise.
3781         * mkdir.c (free): Remove decl.
3782         * rmdir.c (rmdir): Define with a prototype.
3783         * savedir.c: Include savedir.h first, to test interface.
3784
3785         * mktime.c (STDC_HEADERS): Remove.
3786         Include <stdlib.h>, <string.h> unconditionally.
3787
3788         * modechange.c: Include <stdlib.h> unconditionally.
3789         (malloc): Remove decl.
3790
3791         * mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
3792         (free): Remove decl.
3793
3794         * obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
3795         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
3796         (This type really should be intptr_t, but that's a C99ism.)
3797         (_obstack_memcpy): Remove: all uses changed to memcpy.
3798         Include <string.h> unconditionally.
3799         (struct obstack): Assume __STDC__ for types of members
3800         chunkfun, freefun, extra_arg.
3801         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
3802         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
3803         obstack_begin, obstack_specify_allocation,
3804         obstack_specify_allocation_with_arg, obstack_chunkfun,
3805         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
3806         Remove unprototyped decls and the macros that use them.
3807         * obstack.c (POINTER): Remove.  All uses changed to void *.
3808         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
3809         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
3810         (defined __STDC__ && __STDC__)]:
3811         Remove nonprototyped code.
3812         Include <stdlib.h> unconditionally.
3813         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
3814         _obstack_allocated_p, _obstack_free, obstack_free,
3815         _obstack_memory_used, print_and_abort):
3816         Define using prototypes.
3817         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
3818         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
3819         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
3820         obstack_next_free, obstack_object_size, obstack_room) [0]:
3821         Remove unused, unprototyped code.
3822
3823         * path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
3824
3825         * physmem.c (physmem_total, physmem_available, main): Define
3826         with prototypes.
3827
3828         * posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
3829         (main): Define with a prototype.
3830
3831         * posixver.c (getenv): Remove decl.
3832
3833         * putenv.c (malloc): Returns void *, not char *.
3834         Include <string.h> unconditionally.
3835         (strchr, memcpy, NULL): Do not define.
3836
3837         * readtokens.c: Include readtokens.h first, to test interface.
3838         Include <stdlib.h>, <string.h> unconditionally.
3839         (init_tokenbuffer): Define with a prototype.
3840
3841         * regex.c (PARAMS): Remove.  All uses removed.
3842         All uses of _RE_ARGS removed, too.
3843         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
3844         unconditionally.
3845         (bzero): Assume memset exists.
3846         (memcmp, memcpy, NULL): Remove.
3847         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
3848         char, or assignments to local vars of type signed char.
3849         (init_syntax_once, PREFIX(extract_number_and_incr),
3850         PREFIX(print_partial_compiled_pattern),
3851         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
3852         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
3853         PREFIX(regex_grow_registers), PREFIX(regex_compile),
3854         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
3855         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
3856         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
3857         wcs_compile_range, byte_compile_range, truncate_wchar,
3858         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
3859         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
3860         count_mbs_length, wcs_re_match_2_internal,
3861         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
3862         PREFIX(alt_match_null_string_p),
3863         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
3864         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
3865         regfree, PREFIX(extract_number)): Define with prototype.  Remove
3866         now-unnecessary declaration, if any.
3867         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
3868         regcomp, regexec):
3869         Remove now-unnecessary casts among pointer types.
3870         * regex.h (_RE_ARGS): Remove.  All uses removed.
3871
3872         * rename.c: Include <stdlib.h>, <string.h> unconditionally.
3873         (free): Remove decl.
3874
3875         * rpmatch.c: Include <stdlib.h> unconditionally.
3876
3877         * same.c: Include <stdlib.h>, <string.h> unconditionally.
3878         (free): Remove decl.
3879
3880         * save-cwd.c: Include <stdlib.h> unconditionally.
3881         * xgetcwd.c: Likewise.
3882
3883         * stat.c: Include <stdlib.h>, <string.h> unconditionally.
3884         (free): Remove decl.
3885
3886         * strchrnul.c (strchrnul): Define with a prototype.
3887         Fix bug: c_in was not converted to char before searching.
3888
3889         The following changes are not K&R related:
3890
3891         * group-member.h: Include <sys/types.h>, so that this file is
3892         self-contained.
3893         * makepath.h: Likewise.
3894
3895         * getusershell.c (readname, default_index, line_size, readname):
3896         Use size_t, not int, for sizes.
3897         (readname): If the size overflows, report an error instead of
3898         looping forever.
3899
3900 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
3901
3902         * getndelim2.c: Assume stdlib.h per the C89 spec.
3903
3904 2003-09-08  Paul Eggert  <eggert@twinsun.com>
3905
3906         Assume C89 or better; remove K&R cruft.
3907         A few of these changes were first proposed by Derek Robert Price
3908         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
3909
3910         * addext.c: Include <string.h> unconditionally.
3911         * backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
3912         Don't declare getenv or malloc.
3913
3914         * alloca.c: Include <string.h>, <stdlib.h> unconditionally.
3915         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
3916         (NULL): Remove.
3917         (find_stack_direction, alloca): Use prototypes.
3918
3919         * atexit.c (atexit): Define using a prototype.
3920
3921         * basename.c, dirname.c, stripslash.c:
3922         Include <string.h> unconditionally.
3923
3924         * bcopy.c: Include <stddef.h>.
3925         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
3926
3927         * canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
3928
3929         * error.h (error, error_at_line, error_print_progname)
3930         [! (defined (__STDC__) && __STDC__)]: Remove decls.
3931         * error.c: Include error.h first, to check interface.
3932         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
3933         (VA_START): Remove; all uses changeed to va_start.
3934         (exit, strerror): Remove decls.
3935         (error_print_progname): Prototype uncondionally.
3936         Don't include <errno.h>; no longer needed.
3937         (private_strerror): Remove.
3938         (error_tail): Always define.
3939         (error, error_at_line): Assume C89 or better; always use prototypes.
3940         * fatal.c: Include "fatal.h" first, to test interface.
3941         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
3942         (VA_START): Remove; all uses changed to va_start.
3943         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
3944         this case.
3945         (exit): Remove decl.
3946         (fatal): Prototype unconditionally.  Assume va_start works.
3947         Abort at end, to pacify gcc.
3948
3949         * euidaccess.c (main): Define with a prototype.
3950
3951         * exclude.c: Include <stdlib.h>, <string.h> unconditionally.
3952
3953         * exitfail.c: Include <stdlib.h> unconditionally.
3954
3955         * fnmatch_.h (__P): Remove.  All uses changed to assume
3956         prototypes.
3957         * fnmatch.c: Include fnmatch.h first, to test interface.
3958         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
3959         (getenv): Remove decl.
3960         (fnmatch): Define using a prototype.
3961         * fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
3962         (FCT): Define using a prototype.
3963
3964         * getdate.y: Include <stdlib.h>, <string.h> unconditionally.
3965
3966         * gethostname.c: Include <stddef.h>.
3967         (gethostname): Define with prototype.  Length is size_t, not int.
3968
3969 2003-09-08  Paul Eggert  <eggert@twinsun.com>
3970
3971         * getversion.c: Remove; was migrated to backupfile.c in 1997.
3972         getversion.c should have been removed then, but was accidentally
3973         preserved.
3974
3975         * utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
3976         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
3977
3978 2003-09-07  Paul Eggert  <eggert@twinsun.com>
3979
3980         * time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
3981         copy_tm_result.  Bug reported by Simon Josefsson in
3982         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
3983
3984 2003-09-06  Paul Eggert  <eggert@twinsun.com>
3985
3986         * time_r.c, time_r.h: New files.
3987
3988         * mktime.c (my_mktime_localtime_r): Remove; all uses changed to
3989         __localtime_r.
3990         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
3991         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
3992
3993         * strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
3994         __gmtime_r.
3995         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
3996         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
3997         Include <time_r.h>.
3998
3999         * timegm.c: Switch to glibc implementation, with the following changes:
4000         [defined HAVE_CONFIG_H]: Include <config.h>.
4001         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
4002         (__mktime_internal) [!defined _LIBC]: New decl.
4003         (__gmtime_r) [!defined _LIBC]: New macro and function.
4004         (timegm): Use a prototype, since gnulib assumes C89.
4005         Do not bother declaring tmp to be const, as it's not really usefu.
4006         * timegm.h: Hoist "#include <time.h>" out of #ifdef.
4007         (timegm): Declare only if HAVE_DECL_TIMEGM.
4008
4009 2003-09-03  Paul Eggert  <eggert@twinsun.com>
4010
4011         * human.c (human_readable): Fix bug that rounded 10501 to 10k.
4012         Bug reported by Lute Kamstra in
4013         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
4014
4015         * getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
4016         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
4017         course with correspondingly smaller numbers for tomorrow and
4018         yesterday.  From Tadayoshi Funaba.  Originally installed into
4019         sh-utils on 1999-08-07, but the patch got lost (I guess during the
4020         coreutils merge?).
4021
4022 2003-08-31  Simon Josefsson  <jas@extundo.com>
4023
4024         * timegm.h: New file.
4025         * timegm.c: New file.  Based on wget-1.8.2/src/http.c:mktime_from_utc.
4026
4027 2003-08-31  Karl Berry  <karl@gnu.org>
4028
4029         * argp.h: update from libc.
4030
4031 2003-08-28  Bruno Haible  <bruno@clisp.org>
4032
4033         * binary-io.h: Undefine O_BINARY before defining it. This avoids a
4034         warning on QNX, which defines O_BINARY to 000000.
4035
4036 2003-08-24  Bruno Haible  <bruno@clisp.org>
4037
4038         * binary-io.h: Include <stdio.h>, to avoid a compilation error when
4039         MSVC7 <stdio.h> is included later.
4040
4041 2003-08-20  Bruno Haible  <bruno@clisp.org>
4042
4043         * progname.h: New file, from GNU gettext.
4044         * progname.c: New file, from GNU gettext.
4045         * progreloc.c: New file, from GNU gettext.
4046
4047 2003-08-19  Bruno Haible  <bruno@clisp.org>
4048
4049         * xstrdup.c: Assume <string.h> exists.
4050
4051 2003-08-18  Jim Meyering  <jim@meyering.net>
4052
4053         * setenv.h: Indent nested cpp directive.
4054         * vasnprintf.c: Remove trailing blanks.
4055
4056 2003-08-17  Simon Josefsson  <jas@extundo.com>
4057             Bruno Haible  <bruno@clisp.org>
4058
4059         * xstrndup.h: New file.
4060         * xstrndup.c: New file.
4061
4062 2003-08-17  Bruno Haible  <bruno@clisp.org>
4063
4064         * strndup.h: New file.
4065
4066 2003-08-16  Paul Eggert  <eggert@twinsun.com>
4067
4068         * regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
4069         space, undoing this 2003-08-12 change:
4070         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
4071
4072 2003-08-16  Jim Meyering  <jim@meyering.net>
4073
4074         Merge from coreutils.
4075         * xstrtoimax.c: #else #if -> #elif.
4076         * xstrtoumax.c: Likewise.
4077
4078 2003-08-15  Paul Eggert  <eggert@twinsun.com>
4079
4080         * config.charset, ref-add.sin, ref-del.sin: Use three spaces,
4081         rather than tab, after '#' in shell-script copyright notices.
4082         Suggested by Bruno Haible.
4083
4084 2003-08-15  Jim Meyering  <jim@meyering.net>
4085         and Paul Eggert  <eggert@twinsun.com>
4086
4087         Merge from coreutils.
4088         * readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
4089         member but strut utmpx does not.  Needed for AIX 4.3.3.
4090         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
4091
4092 2003-08-15  Jim Meyering  <jim@meyering.net>
4093
4094         Merge from coreutils.
4095         * xgethostname.c: Include <stdlib.h>.
4096         (xghostname): Don't exit for anything other than memory-related
4097         failure; just return NULL.
4098         * userspec.c: Include "posixver.h".
4099         (parse_user_spec): Accept `.' as a separator only
4100         in pre-POSIX-200112 mode.
4101         * strtoimax.c: Use #elif rather than #else #if.
4102         * strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
4103         Remove function, now that we can rely on a working tzset function.
4104         [!_LIBC]: Ensure that the required autoconf test has been run.
4105         [!defined _NL_CURRENT && HAVE_STRFTIME]:
4106         Use underlying_strftime for %r.
4107         * sha.c: Merge in some clean-up and optimization changes from glibc.
4108         * sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
4109         Ensure that it is a multiple of 64.
4110         Rearrange loop exit tests so as to avoid performing an
4111         additional fread after encountering an error or EOF.
4112         * realloc.c: Update copyright date.
4113
4114 2003-08-14  Jim Meyering  <jim@meyering.net>
4115
4116         Merge from coreutils.
4117         * obstack.h: Whitespace changes.
4118         * mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
4119         and xcalloc return values.
4120         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
4121         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
4122         hang on OSF/1 5.1 for DIR on both local and remote file systems.
4123         Reported by (and fix confirmed by) Nelson H. F. Beebe.
4124         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
4125         error from mntctl.
4126         Use mntctl's return value to drive the entry-processing loop, since
4127         we can't rely on the value of the vmt_length member in the last
4128         entry.  On some systems doing so could result in exhausting
4129         virtual memory.  Based in part on a patch from Mike Jetzer.
4130
4131 2003-08-14  Jim Meyering  <jim@meyering.net>
4132         and Paul Eggert  <eggert@twinsun.com>
4133
4134         Merges from coreutils, plus other fixes.
4135         * physmem.c: Merge in portability changes from gcc/libiberty
4136         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
4137         for credits and details.  Thanks to Kaveh Ghazi for helping
4138         to keep these files in sync.
4139         (ARRAY_SIZE): Define it.
4140         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
4141         * memcasecmp.c: Remove unnecessary parentheses after 'defined'.
4142         (memcasecmp): Don't assume size_t fits in unsigned int.
4143         Remove casts and duplicate code.
4144         * md5.c: Include <string.h> and <stdlib.h> unconditionally.
4145         (memcpy): Remove definition.
4146         Merge in some clean-up and optimization changes from glibc.
4147         [BLOCKSIZE]: Move definition to top of file.
4148         Ensure that it is a multiple of 64.
4149         Rearrange loop exit tests so as to avoid performing an
4150         additional fread after encountering an error or EOF.
4151         * md5.h (md5_uintptr): Define.
4152         * makepath.c (CLEANUP_CWD): Report an error if we failed to
4153         return to the initial working directory.  Preserve errno
4154         for caller.
4155         * idcache.c: Include "xalloc.h".
4156         (xmalloc, xrealloc): Remove decls.
4157         (getuser): Remove casts no longer required in C89.
4158         * human.c: Include stdio.h, for sprintf.
4159         * group-member.c: Include "xalloc.h".
4160         (xmalloc, xrealloc): Remove decls.
4161         (get_group_info): Remove casts no longer required in C89.
4162         * getusershell.c (readname): Remove casts no longer required in C89.
4163         * gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
4164         * getline.c: Whitespace fix, from coreutils.
4165
4166 2003-08-13  Paul Eggert  <eggert@twinsun.com>
4167
4168         * exclude.c: Include <ctype.h>
4169         (IN_CTYPE_DOMAIN): New macro.
4170         (is_space): New fn.
4171         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
4172         and empty lines.
4173
4174         * argp-help.c, argp-parse.c, config.charset, getopt.h:
4175         Undo previous (whitespace-only) change.
4176
4177 2003-08-12  Paul Eggert  <eggert@twinsun.com>
4178
4179         * argp-help.c, argp-parse.c, config.charset, getopt.h:
4180         Normalize leading white space and remove trailing white space.
4181         * ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
4182         notice, as per ../config/srclist-update.
4183
4184         Merge from coreutils.
4185         * euidaccess.h: New file.
4186         * euidaccess.c: Include it.
4187         * .cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
4188         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
4189         * regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
4190
4191 2003-08-11  Bruno Haible  <bruno@clisp.org>
4192
4193         * vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
4194         (vasnprintf): Use it instead of wcslen.
4195
4196 2003-08-11  Bruno Haible  <bruno@clisp.org>
4197
4198         * stdbool_.h (_Bool): Undo last change; instead use a negative enum
4199         value to ensure that _Bool promotes to int. Use #define for _Bool when
4200         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
4201
4202 2003-08-10  Karl Berry  <karl@gnu.org>
4203
4204         * regex.h: update from libc (whitespace fix).
4205
4206 2003-08-09  Paul Eggert  <eggert@twinsun.com>
4207
4208         Merge some files from coreutils.  These changes were
4209         originally made by Jim Meyering.
4210         * acl.c: Include <sys/types.h> before <sys/stat.h>;
4211         many older Unixes require this.
4212         * alloca.c (alloca): Remove cast to argument of free;
4213         no longer needed in C89.
4214         * alloca_.h, regex.h: Fix white space to match
4215         what GNU indent does.
4216
4217 2003-08-05  Paul Eggert  <eggert@twinsun.com>
4218
4219         * bumpalloc.h: Remove.
4220
4221 2003-08-04  Paul Eggert  <eggert@twinsun.com>
4222
4223         * getloadavg.c: Change copyright notice and spacing to conform to
4224         GNU coding style.
4225
4226         Merge from coreutils.
4227         * error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is 1.
4228         From glibc.
4229         * getdate.y (date): Also accept dates like May-23-2003; suggestion
4230         from Karl Berry, implemented by Jim Meyering.
4231         * getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
4232         from Dmitry V. Levin.
4233         Remove anachronistic cast of xrealloc.
4234         * fnmatch_.h (__const): Remove.  Use 'const'.
4235         * fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
4236         type. Otherwise, it wouldn't compile with at least /bin/cc on
4237         ymp-cray-unicos9.0.2.X.
4238         Combine two mostly-identical uses of alloca into one.
4239         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
4240
4241 2003-08-04  Dave Love <d.love@dl.ac.uk>
4242
4243         [From Emacs.]
4244
4245         * getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
4246         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
4247         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
4248         obsolete NLIST_NAME_UNION.
4249         [__GNU__]: Undef BSD and FSCALE.
4250         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
4251
4252 2003-08-03  Paul Eggert  <eggert@twinsun.com>
4253
4254         * stdbool_.h (_Bool): Make it signed char, instead of
4255         an enum type, so that it's guaranteed to promote to int.  See:
4256         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
4257
4258 2003-07-31  Paul Eggert  <eggert@twinsun.com>
4259
4260         * strerror.c: Include config.h, limits.h.  Declare sprintf.
4261         (strerror): Don't assume that a printable int fits in 14 bytes.
4262
4263 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
4264             Bruno Haible  <bruno@clisp.org>
4265
4266         * getline.h (getline, getdelim): Change return type to ssize_t.
4267         * getline.c (getline, getdelim): Likewise.
4268         Remove _GNU_SOURCE define; now it's defined in config.h through
4269         m4/getline.m4.
4270
4271 2003-07-22  Paul Eggert  <eggert@twinsun.com>
4272
4273         * xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
4274         over-parenthesization in macros.
4275
4276         Sync with coreutils.
4277
4278         * xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
4279         required by C99.
4280
4281         Use `exit_failure' for xalloc and xmemcoll instead of their own
4282         private exit-failure variables.
4283         * xalloc.h (xalloc_exit_failure): Remove.
4284         * xmalloc.c: Likewise.  Include exitfail.h.
4285         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
4286         * xmemcoll.h (xmemcoll_exit_failure): Remove.
4287         * xmemcoll.c: Likewise.  Include exitfail.h.
4288         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
4289
4290 2003-07-18  Paul Eggert  <eggert@twinsun.com>
4291
4292         * closeout.h (close_stdout_set_status, close_stdout_status): Remove.
4293         * closeout.c: Likewise.  Include "closeout.h" right after config.h,
4294         to test that it can stand by itself.  Include "exitfail.h".
4295         Clients should set exit_failure instead.
4296         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
4297
4298 2003-07-18  Andreas Schwab  <schwab@suse.de>
4299
4300         * memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
4301
4302 2003-07-18  Bruno Haible  <bruno@clisp.org>
4303
4304         * getndelim2.h: New file.
4305         * getndelim2.c: Make into a module of its own. Include config.h,
4306         getndelim2.h.
4307         (getndelim2): Make non-static. Change return type to ssize_t.
4308         * getline.h: Change argument names.
4309         * getline.c: Include getndelim2.h instead of getndelim2.c.
4310         * getnline.c: Include getndelim2.h.
4311
4312 2003-07-17  Bruno Haible  <bruno@clisp.org>
4313
4314         * Makefile.am: Remove file.
4315         * Makefile.in: Remove file.
4316
4317 2003-07-17  Bruno Haible  <bruno@clisp.org>
4318
4319         * getnline.h: New file.
4320         * getnline.c: New file.
4321         * getndelim2.c: New file, extracted from getline.c.
4322         (getndelim2): Renamed from getdelim2, with added nmax argument.
4323         * getline.c: Include getndelim2.c.
4324         (getdelim2): Moved out to getndelim2.c.
4325         (getline, getdelim): Update.
4326
4327 2003-07-15    <karl@gnu.org>
4328
4329         * vasnprintf.c: update from gettext.
4330
4331 2003-07-15  Jim Meyering  <jim@meyering.net>
4332
4333         * makepath.c (make_path): Enclose diagnostic in _(...).
4334
4335 2003-07-14  Paul Eggert  <eggert@twinsun.com>
4336
4337         * asnprintf.c, asprintf.c, config.charset, gettext.h,
4338         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
4339         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
4340         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
4341         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
4342         updated automatically by ../config/srclist-update.  This changes
4343         their license from LPGL to GPL.
4344
4345 2003-07-14  Jim Meyering  <jim@meyering.net>
4346
4347         Don't emit diagnostics.  Let callers do that.
4348         * save-cwd.c: Don't include "error.h".
4349         (save_cwd): Don't call error.  Ensure that errno is valid
4350         when returning nonzero.
4351
4352         * save-cwd.h (restore_cwd): Update prototype.
4353         * save-cwd.c (restore_cwd): Remove two parameters.
4354         Simplify.  Don't call error upon failure.  Let callers do that.
4355         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
4356         when auditing is enabled.  But don't bother updating the #if.
4357
4358 2003-07-14  Simon Josefsson  <jas@extundo.com>
4359
4360         * mempcpy.h: New file.
4361         * mempcpy.c: New file.
4362
4363 2003-07-14  Paul Eggert  <eggert@twinsun.com>
4364
4365         * ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
4366         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
4367         unicodeio.c, unicodeio.h, unlocked-io.h:
4368         Switch from LGPL to GPL.
4369
4370 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
4371
4372         * obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
4373         it breaks C++ compilation.
4374         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
4375
4376 2003-07-10  Jim Meyering  <jim@meyering.net>
4377
4378         * vasnprintf.c: Remove trailing blanks.
4379         Make cpp indentation consistent.
4380
4381 2003-07-09  Paul Eggert  <eggert@twinsun.com>
4382
4383         * alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
4384         posixver.c, strftime.c, strnlen.c, strverscmp.c:
4385         Switch from LGPL to GPL.
4386
4387 2003-07-07  Paul Eggert  <eggert@twinsun.com>
4388
4389         * mktime.c: Fix some boundary cases and remove need for floating point.
4390
4391         Issue a compile-time diagnostic if time_t is floating point, or if
4392         two's complement arithmetic is not in effect, or if arithmetic
4393         right shift does not propagate the sign.  These assumptions were
4394         all in the original code but they weren't checked.
4395
4396         (TIME_T_MIDPOINT, verify): New macros.
4397         (__isleap): Remove; it has integer overflow problems.
4398         (leapyear): New function, without those problems.
4399         (ydhms_tm_diff): Remove; splitting into two parts.
4400         (ydhms_diff): New function, containing the arithmetic part of
4401         the old ydhms_tm_diff function.  Issue a compile-time
4402         diagnostic if we are not using C99 integer division.
4403         Avoid casts when possible.
4404         (guess_time_tm): New function, containing the checking part of
4405         the old ydhms_tm_diff function.  Return the new value, rather than
4406         the difference between it and the old.  Accept a new argument T
4407         so that *T specifies the old value.  Check for overflow in the result.
4408
4409         (__mktime_internal): Use a time_t offset, not a long int offset.
4410         This undoes the 2003-06-04 change, which is no longer needed now
4411         that we have better overflow checking.
4412         (localtime_offset): Likewise.
4413
4414         (__mktime_internal): Avoid harmful overflow on hosts where time_t
4415         and long are 64-bit but int is only 32-bit.
4416         (ydhms_diff): Use long int to store year1 and yday1.
4417         Issue a compile-time diagnostic if long int is not wide enough.
4418
4419         (__mktime_internal): Use long int to store adjusted year and yday.
4420         Use plain C rather than preprocessor commands, if that doesn't
4421         affect efficiency.
4422         Check for overflow (and try to repair) after each probe
4423         rather than checking only at the very end.  This avoids some bugs
4424         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
4425         does not equal GMT offset at maximum time).
4426         Use integer to check for overflow rather than floating point; this
4427         is more portable to non-IEEE hosts, and is a tad faster.
4428         When we detect that we are oscillating between two values,
4429         don't check whether tm_isdst has the requested value, since
4430         we already know the answer.  When tm_isdst has the wrong value,
4431         use a different heuristic to find the right one, based on the
4432         extreme values actually observed in practice in tz2003a,
4433         rather than the (overly optimistic) "previous 3 calendar quarters".
4434
4435         (not_equal_tm, print_tm, check_result): Use "const T" rather than
4436         "T const" to accommodate glibc style.
4437         (check_result): Use less-confusing report format.  "long" -> "long int.
4438         (main): Likewise.
4439         Don't loop if the iteration overflows time_t.
4440         Allow a negative step in the iteration.
4441
4442 2003-07-01  Paul Eggert  <eggert@twinsun.com>
4443
4444         * xreadlink.c: Include <sys/types.h> unconditionally, instead of
4445         having it depend on HAVE_SYS_TYPES_H.
4446
4447 2003-06-25  Bruno Haible  <bruno@clisp.org>
4448
4449         * readlink.c: New file.
4450
4451 2003-06-20  Bruno Haible  <bruno@clisp.org>
4452
4453         Assume C89, so PARAMS isn't needed.
4454         * unicodeio.h (PARAMS): Remove.
4455         * unicodeio.c: Don't use PARAMS.
4456
4457 2003-06-18  Jim Meyering  <jim@meyering.net>
4458
4459         Merge changes from coreutils.
4460         * readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
4461         Remove explicit declarations of xmalloc and realloc.
4462         Include xalloc.h.
4463         (read_utmp): Remove anachronistic cast of xmalloc.
4464
4465 2003-06-17  Paul Eggert  <eggert@twinsun.com>
4466
4467         Assume C89, so PARAMS isn't needed.
4468         * backupfile.h (PARAMS): Remove.  All uses removed.
4469         * closeout.h, dirname.h, filemode.h, fsusage.h, getdate.h, getline.h,
4470         group-member.h, hard-locale.h, hash.h, linebuffer.h, long-options.h,
4471         makepath.h, memcasecmp.h, memcoll.h, modechange.h, mountlist.h,
4472         path-concat.h, physmem.h, posixtm.h, quote.h, readutmp.h, same.h,
4473         save-cwd.h, savedir.h, stdio-safer.h, strtoimax.c, strverscmp.h,
4474         unistd-safer.h, version-etc.h, xalloc.h, xreadlink.h, xstrtod.h,
4475         xstrtol.h: Likewise.
4476         * filemode.h, hard-locale.h, memcoll.h, modechange.h, physmem.h,
4477         same.h, strverscmp.h: Do not include config.h; no longer needed.
4478         Anyway, config.h should always be included before any other file.
4479
4480 2003-06-11  Simon Josefsson  <jas@extundo.com>
4481
4482         * sysexit_.h: New file.
4483
4484 2003-05-20  Derek Price  <derek@ximbiot.com>
4485
4486         * stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is necessary.
4487
4488 2003-06-10  Simon Josefsson  <jas@extundo.com>
4489
4490         * strchrnul.h: New file.
4491         * strchrnul.c: New file.
4492
4493 2003-06-10  Simon Josefsson <jas@extundo.com>
4494
4495         * argp.h: New file, from glibc.
4496         * argp-ba.c: New file, from glibc.
4497         * argp-eexst.c: New file, from glibc.
4498         * argp-fmtstream.c: New file, from glibc.
4499         * argp-fmtstream.h: New file, from glibc.
4500         * argp-fs-xinl.c: New file, from glibc.
4501         * argp-help.c: New file, from glibc.
4502         * argp-namefrob.h: New file, from glibc.
4503         * argp-parse.c: New file, from glibc.
4504         * argp-pv.c: New file, from glibc.
4505         * argp-pvh.c: New file, from glibc.
4506         * argp-xinl.c: New file, from glibc.
4507
4508 2003-06-07  Jim Meyering  <jim@meyering.net>
4509
4510         * readtokens.h: Put `Free Software Foundation, Inc.'
4511         in place of my name in the copyright comment.
4512         Remove definition and uses of __P.
4513
4514         From coreutils.
4515         * stat.c: Don't declare xmalloc explicitly.
4516         Instead, include "xalloc.h".
4517         * readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
4518         xrealloc, and xcalloc return values.
4519         * xgetcwd.c (xgetcwd): Include "xgetcwd.h".
4520         Improve comment.
4521         * xgetcwd.h: Remove definition/uses of PARAMS.
4522
4523 2003-06-06  Jim Meyering  <jim@meyering.net>
4524
4525         * stdbool_.h: Renamed from stdbool.h.in.
4526
4527 2003-06-06  Jim Meyering  <jim@meyering.net>
4528
4529         Merge from coreutils.
4530         * same.c: (same_name): Declare *_basename locals to be `const'.
4531         Consolidate declarations and initializations of *_base* locals.
4532
4533         Merge from coreutils.
4534         This avoids a core dump on systems without GNU putenv,
4535         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
4536         * putenv.c (__set_errno, LOCK, UNLOCK): Define.
4537         (unsetenv): New static function, from GNU libc.
4538         (rpl_putenv): Use it.
4539
4540         * modechange.c: Remove trailing blanks.
4541
4542         Merge from coreutils.
4543         * fsusage.c: Remove declaration of statfs.
4544         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
4545
4546         * posixtm.c: Include <stdbool.h> unconditionally.
4547
4548 2003-06-05  Paul Eggert  <eggert@twinsun.com>
4549
4550         * mktime.c (__mktime_internal): When resolving a tm_isdst
4551         mismatch, look in future quarters as well as past.  This fixes a
4552         bug when processing fall-backwards gaps immediately after a long
4553         period of daylight-saving time.
4554
4555         * mktime.c: Assume freestanding C89 or better.
4556         (HAVE_LIMITS_H): Remove.  Assume it's 1.
4557         (__P): Remove; not used.
4558         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
4559         (mktime, not_equal_tm, print_tm, check_result,
4560         main): Use prototypes.  Use const * where appropriate.
4561         (main): Fix typo in testing code that uncovered by above changes.
4562         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
4563
4564 2003-06-04  Paul Eggert  <eggert@twinsun.com>
4565
4566         * mktime.c: Fix Debian bug 177940
4567         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
4568         (localtime_offset): Now long int, not time_t, because we want it
4569         to be guaranteed to be signed.  All uses changed.
4570         (__mktime_internal): If overflow would occur when adding offset,
4571         don't add it.
4572
4573         Merge 'human' changes from coreutils.  Rewrite to support
4574         locale-specific notations like thousands separators.
4575         * human.c: Simplify authorship notice.
4576         Include human.h immediately after config.h.
4577         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
4578         <limits.h>: Do not include, since human.h does.
4579         (SIZE_MAX, UINTMAX_MAX): New macros.
4580         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
4581         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
4582         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
4583         (power_letter): Renamed from suffixes.
4584         (generate_suffix_backwards): Remove.
4585         (adjust_value): Now takes int style (because of human.h changes)
4586         and long double value (for greater precision on some platforms).
4587         (group_number): New function.
4588         (human_readable): Use it.  Use integer options, not enum.
4589         Put the options before the sizes in the arg list.
4590         Support all the new options.
4591         The old human_readable function has been removed;
4592         use inttostr.h instead.
4593         (human_readable, default_block_size, humblock):
4594         Use uintmax_t, not int, for block sizes.
4595         (human_readable_inexact, block_size_types): Remove.
4596         (block_size_opts): New constant.
4597         (human_options): Renamed from human_block_size, with new signature
4598         that allows block sizes up to UINTMAX_MAX.  All callers changed.
4599         * human.h: Add copyright and authorship notice.
4600         Include <limits.h> and <stdbool.h> unconditionally.
4601         (PARAMS): Remove.  All uses removed.
4602         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
4603         (enum human_inexact_style): Remove tag; now a nameless enum.
4604         (human_floor, human_ceiling, human_round_to_even): Now have
4605         values 2, 0, 1 rather than -1, 1, 0.
4606         (human_group_digits, human_suppress_point_zero, human_autoscale,
4607         human_base_1024, human_SI, human_B): New constants.
4608         (human_readable_inexact, human_block_size): Remove.
4609         (human_readable): Size args are now uintmax_t, not int.
4610         (human_options): New decl.
4611
4612         * exclude.c: (new_exclude, add_exclude): Remove casts that are
4613         unnecessary now that we assume C89 or better.  This change
4614         imported from coreutils.
4615
4616         * mktime.c (__mktime_internal): Do not reject negative timestamps
4617         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
4618         in the 2003-05-30 sync from glibc.
4619
4620         .h files should stand alone, but we shouldn't include <sys/types.h>
4621         if we can get away with just <stddef.h>.
4622
4623         * __fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
4624         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
4625         rather than <sys/types.h>, as we merely need size_t.
4626         * dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
4627         to get size_t.
4628         * hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
4629         Include <stdio.h>, to get FILE.
4630         * memcasecmp.c: Don't include <sys/types.h>, as we can assume
4631         memcasecmp.h has included <stddef.h> and all we need is size_t.
4632         * memcoll.c: Include "memcoll.h", which gets us size_t and checks
4633         our interface, instead of including <sys/types.h>
4634
4635 2003-06-02  Paul Eggert  <eggert@twinsun.com>
4636
4637         [from coreutils]
4638         Fix some minor time-related bugs with POSIX time arguments.
4639         Some valid time stamps were being rejected (notably -1, and
4640         time stamps before 1900 on 64-bit hosts).  And some invalid
4641         time stamps were being accepted, e.g. September 31.
4642
4643         * posixtm.h (posixtime): Return bool instead of time_t, so
4644         that we can return (time_t) -1 successfully.
4645         * posixtm.c: Likewise.
4646         [HAVE_STDBOOL_H]: Include <stdbool.h>.
4647         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
4648         (t): Remove static var.
4649         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
4650         of static var.  All uses changed.
4651         (year): Do not reject years before 1900; they can occur with
4652         64-bit time_t.
4653         (posix_time_parse): Do not check for out-of-range components;
4654         that is now the caller's responsibility, since our checks were
4655         only approximations.
4656         (posixtime): Use mktime to check for out-of-range components,
4657         since it knows them exactly.
4658         If mktime returns (time_t) -1, check whether an error actually occurred
4659         by invoking localtime on -1.
4660         (main) [TEST_POSIXTIME]: Check for input data errors, and report
4661         posixtime failures better.
4662         Improve the test data (in comments only).
4663
4664 2003-05-30    <karl@gnu.org>
4665
4666         * mktime.c: update from libc.
4667
4668 2003-05-30  Bruno Haible  <bruno@clisp.org>
4669
4670         * config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
4671         * localcharset.h: Likewise.
4672         * localcharset.c: Likewise.
4673
4674 2003-05-28  Paul Eggert  <eggert@twinsun.com>
4675
4676         Assume the headers required for C89 freestanding compilers.
4677         * addext.c, backupfile.c, fsusage.c, human.c, pathmax.h,
4678         rpmatch.c, userspec.c, xreadlink.c, xstrtol.c: Include <limits.h>
4679         without checking for HAVE_LIMITS_H.
4680         * backupfile.c, fsusage.c, hash.c, human.c, safe-read.c, userspec.c,
4681         xstrtol.c (CHAR_BIT) : Don't define, since <limits.h> is guaranteed
4682         to do that.
4683         * fatal.c: Include <stdarg.h> without checking for __STDC__.
4684         * exclude.c: Include <stdbool.h> unconditionally.
4685         * tempname.c: Include <stddef.h> unconditionally.
4686         * hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
4687         * modechange.c, rpmatch.c (NULL): Don't define, since
4688         <stddef.h> does that.
4689         * quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
4690         * safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
4691         * safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer needed.
4692         * xstrtol.c: Likewise.
4693         * safe-read.c: Remove TYPE_SIGNED; no longer needed.
4694         * savedir.c: Include <stddef.h> instead of defining NULL.
4695
4696         * addext.c (addext): Use assignment rather than cast, to avoid
4697         warnings on some platforms.
4698
4699         * mktime.c (__mktime_internal): Do not reject negative timestamps
4700         arbitrarily.
4701
4702 2003-05-10  Bruno Haible  <bruno@clisp.org>
4703
4704         * linebreak.c (iconv_string_length): Don't return -1 just because the
4705         string is longer than 4 KB.
4706
4707 2003-05-12  Jim Meyering  <jim@meyering.net>
4708
4709         * strftime.c (my_strftime): Let the `-' (no-pad) flag affect
4710         the space-padded-by-default conversion specifiers, %e, %k, %l.
4711
4712 2003-05-03  Bruno Haible  <bruno@clisp.org>
4713
4714         Upgrade to Unicode-4.0.
4715         * linebreak.c (nonspacing_table_data): Change width of U+00AD,
4716         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
4717         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
4718         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
4719         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
4720         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
4721         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
4722         Change width of U+E0100..U+E01EF from 1 to 0.
4723
4724 2003-04-25  Bruno Haible  <bruno@clisp.org>
4725
4726         * copy-file.c: Include <stddef.h>, for size_t.
4727
4728 2003-04-25  Jim Meyering  <jim@meyering.net>
4729
4730         * copy-file.c (copy_file_preserving): Declare buf_size to be
4731         of type size_t, not int.
4732
4733 2003-04-11  Jim Meyering  <jim@meyering.net>
4734
4735         Merge changes from Coreutils.
4736
4737         2003-03-22  Jim Meyering  <jim@meyering.net>
4738
4739         * strftime.c (widen): Cast alloca return value to proper type.
4740
4741         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
4742
4743         From GNU libc.
4744         * strftime.c (my_strftime): Handle very large width
4745         specifications for numeric values correctly.  Improve checks for
4746         overflow.
4747
4748         2003-01-19  Jim Meyering  <jim@meyering.net>
4749
4750         * strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical definitions.
4751         (nl_get_alt_digit) [! defined my_strftime]: Define.
4752         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
4753         _nl_get_alt_digit and _nl_get_walt_digit.
4754
4755         * strftime.c (my_strftime): Merge in locale-related changes from libc.
4756         These changes have no effect outside of _LIBC.
4757
4758 2003-04-10  Bruno Haible  <bruno@clisp.org>
4759
4760         * findprog.h: New file, from GNU gettext.
4761         * findprog.c: New file, from GNU gettext.
4762
4763 2003-04-05  Jim Meyering  <jim@meyering.net>
4764
4765         Merge changes from Coreutils.
4766
4767         * exclude.h (PARAMS): Remove definition and uses.
4768         * exclude.c: Remove uses of `PARAMS'.
4769
4770         * dirname.c [TEST_DIRNAME]: Update build instructions for test.
4771         Add test-cases for DOS filenames. Declare program_name.
4772         (main): Set up program_name.  Patch by Rich Dawe.
4773
4774         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
4775         error from mntctl.
4776         Use mntctl's return value to drive the entry-processing loop, since
4777         we can't rely on the value of the vmt_length member in the last
4778         entry.  On some systems doing so could result in exhausting
4779         virtual memory.  Based in part on a patch from Mike Jetzer.
4780
4781 2003-04-04  Bruno Haible  <bruno@clisp.org>
4782
4783         * linebreak.h: New file, from GNU gettext.
4784         * linebreak.c: New file, from GNU gettext with slight modifications.
4785         * lbrkprop.h: New file, from GNU gettext.
4786
4787 2003-04-03  Bruno Haible  <bruno@clisp.org>
4788
4789         * utf8-ucs4.h: New file, from GNU gettext.
4790         * utf16-ucs4.h: New file, from GNU gettext.
4791         * ucs4-utf8.h: New file, from GNU gettext.
4792         * ucs4-utf16.h: New file, from GNU gettext.
4793
4794 2003-04-02  Bruno Haible  <bruno@clisp.org>
4795
4796         * binary-io.h: New file, from GNU gettext.
4797
4798 2003-04-01  Bruno Haible  <bruno@clisp.org>
4799
4800         * pathname.h: New file, from GNU gettext.
4801         * concatpath.c: New file, from GNU gettext.
4802
4803 2003-03-30  Bruno Haible  <bruno@clisp.org>
4804
4805         * copy-file.c (copy_file_preserving): Don't set owner if the function
4806         chown() doesn't exist.
4807
4808 2003-03-28  Bruno Haible  <bruno@clisp.org>
4809
4810         * copy-file.h: New file, from GNU gettext.
4811         * copy-file.c: New file, from GNU gettext.
4812
4813 2003-03-18  Jim Meyering  <jim@meyering.net>
4814
4815         * quote.c (quote_n): Fix typo in comment.
4816
4817 2003-03-14  Jim Meyering  <jim@meyering.net>
4818
4819         Merge changes from Coreutils.
4820         * obstack.h (obstack_object_size): Declare temporary, __o,
4821         to be const, in order to avoid warnings.
4822         (obstack_room): Likewise.
4823         (obstack_empty_p): Likewise.
4824
4825 2003-03-13  Paul Eggert  <eggert@twinsun.com>
4826
4827         Merge changes from Bison.
4828         * obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
4829         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
4830         when compiling Bison 1.875's `bitset bset = obstack_alloc
4831         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
4832         * hash.c: Include <stdbool.h> unconditionally.
4833
4834 2003-03-09  Paul Eggert  <eggert@twinsun.com>
4835
4836         * argmatch.c (EXIT_FAILURE): Define if the system doesn't.
4837         Reported by Bruce Becker; see:
4838         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
4839
4840 2003-03-03  Paul Eggert  <eggert@twinsun.com>
4841             Bruno Haible  <bruno@clisp.org>
4842
4843         * mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
4844         Reported by John Hughes, see
4845         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
4846
4847 2003-02-19  Paolo Bonzino  <bonzini@gnu.org>
4848
4849         * poll_.h: New file.
4850         * poll.c: New file.
4851
4852 2003-02-18  Paolo Bonzino  <bonzini@gnu.org>
4853
4854         * mathl.h: New file.
4855         * acosl.c: New file.
4856         * asinl.c: New file.
4857         * atanl.c: New file.
4858         * ceill.c: New file.
4859         * cosl.c: New file.
4860         * expl.c: New file.
4861         * floorl.c: New file.
4862         * frexpl.c: New file.
4863         * ldexpl.c: New file.
4864         * logl.c: New file.
4865         * sincosl.c: New file.
4866         * sinl.c: New file.
4867         * sqrtl.c: New file.
4868         * tanl.c: New file.
4869         * trigl.c: New file.
4870         * trigl.h: New file.
4871
4872 2003-02-17  Bruno Haible  <bruno@clisp.org>
4873
4874         * mkdtemp.h: New file, from GNU gettext.
4875         * mkdtemp.c: New file, from GNU gettext.
4876
4877 2003-01-31  Bruno Haible  <bruno@clisp.org>
4878
4879         * rename.c: #undef rename before defining rpl_rename.
4880         * strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
4881
4882 2003-01-30  Bruno Haible  <bruno@clisp.org>
4883
4884         * printf-args.h: New file, from GNU gettext.
4885         * printf-args.c: New file, from GNU gettext.
4886         * printf-parse.h: New file, from GNU gettext.
4887         * printf-parse.c: New file, from GNU gettext.
4888         * vasnprintf.h: New file, from GNU gettext.
4889         * vasnprintf.c: New file, from GNU gettext.
4890         * asnprintf.c: New file, from GNU gettext.
4891         * vasprintf.h: New file, from GNU gettext with modifications.
4892         * vasprintf.c: New file, from GNU gettext.
4893         * asprintf.c: New file, from GNU gettext.
4894
4895 2003-01-29  Bruno Haible  <bruno@clisp.org>
4896
4897         * stpncpy.h: New file, from GNU gettext with modifications.
4898         * stpncpy.c: New file, from GNU gettext with modifications.
4899
4900 2003-01-28  Bruno Haible  <bruno@clisp.org>
4901
4902         * c-ctype.h: New file, from GNU gettext, with changes suggested by
4903         Paul Eggert.
4904         * c-ctype.c: New file, from GNU gettext, with changes suggested by
4905         Paul Eggert.
4906
4907 2003-01-27  Bruno Haible  <bruno@clisp.org>
4908
4909         * xsetenv.h: New file, from GNU gettext.
4910         * xsetenv.c: New file, from GNU gettext.
4911
4912 2003-01-23  Bruno Haible  <bruno@clisp.org>
4913
4914         * minmax.h: New file, from GNU gettext, with comments from Paul Eggert.
4915
4916 2003-01-22  Bruno Haible  <bruno@clisp.org>
4917
4918         * exit.h: New file, from GNU gettext.
4919
4920 2003-01-11  Bruno Haible  <bruno@clisp.org>
4921
4922         * stpcpy.h (stpcpy): Use ANSI C function declarations.
4923         * strcase.h (strcasecmp, strncasecmp): Likewise.
4924
4925 2003-01-14  Jim Meyering  <jim@meyering.net>
4926
4927         * same.c (same_name): Tweak a comment.
4928
4929 2003-01-11  Bruno Haible  <bruno@clisp.org>
4930
4931         * same.c (same_name): Reorder tests so as to avoid calling stat()
4932         when a string comparison is sufficient.
4933
4934 2003-01-11  Bruno Haible  <bruno@clisp.org>
4935
4936         * readtokens.c (readtoken): Cast character to 'unsigned char', not
4937         'unsigned int'.
4938
4939 2003-01-11  Bruno Haible  <bruno@clisp.org>
4940
4941         * hash-pjw.c: Add comment about low quality of this function.
4942
4943 2003-01-12  Paul Eggert  <eggert@twinsun.com>
4944
4945         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
4946         to avoid collisions with libcurses and libreadline.
4947
4948         * Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
4949         * getstr.h, getstr.c: Remove.
4950         * getline.c: Include "getline.h", to check interface.
4951         Move body of old getstr.c here: this defines MIN_CHUNK and
4952         declares getdelim2, which is renamed from getstr.
4953         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
4954
4955         * linebuffer.c (readlinebuffer): Renamed from readline.
4956         All uses changed.
4957         * linebuffer.h: Likewise.
4958         (readline): Remove backward-compatibility macro.
4959
4960 2003-01-12  Jim Meyering  <jim@meyering.net>
4961
4962         * makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
4963
4964 2003-01-10  Bruno Haible  <bruno@clisp.org>
4965
4966         * alloca_.h: New file.
4967         * getdate.y: Unconditionally include alloca.h.
4968         * makepath.c: Likewise.
4969         * setenv.c: Likewise.
4970         * userspec.c: Likewise.
4971
4972 2003-01-09  Bruno Haible  <bruno@clisp.org>
4973
4974         * stdbool.h.in: New file.
4975
4976 2003-01-08  Bruno Haible  <bruno@clisp.org>
4977
4978         * safe-read.c: Include specification header first, to ensure its
4979         selfcontainedness.
4980         * full-write.c: Likewise.
4981
4982 2003-01-08  Jim Meyering  <jim@meyering.net>
4983
4984         * full-write.c: Undefine and define-away `const' after inclusion
4985         of errno.h, not before.  Suggestion from Bruno Haible.
4986
4987 2003-01-07  Jim Meyering  <jim@meyering.net>
4988
4989         * full-write.c: Rework so that it may serve to define full_read, too.
4990         * full-read.c: Simply #define FULL_READ and include full-write.c.
4991
4992 2003-01-06  Jim Meyering  <jim@meyering.net>
4993
4994         * version-etc.c: Update year in translatable copyright string.
4995
4996 2002-12-25  Bruno Haible  <bruno@clisp.org>
4997
4998         * strtoimax.c: Include <stdint.h> as an alternative to <inttypes.h>.
4999         * xstrtol.h: Likewise.
5000         * xstrtoimax.c: Likewise.
5001         * xstrtoumax.c: Likewise.
5002         * human.h: Likewise.
5003
5004         * tempname.c: Include <inttypes.h> too. Avoids a compilation error
5005         on systems that have <inttypes.h> but not <stdint.h>.
5006
5007 2002-12-31  Paul Eggert  <eggert@twinsun.com>
5008
5009         * memcoll.c (memcoll): Fall back on a simple algorithm using
5010         memcmp if strcoll doesn't work.
5011
5012 2002-12-23  Bruno Haible  <bruno@clisp.org>
5013
5014         * localcharset.h: New file.
5015         * localcharset.c: Include it.
5016         * unicodeio.c: Likewise.
5017
5018 2002-12-22  Bruno Haible  <bruno@clisp.org>
5019
5020         * utime.c (utime_null): No need to call ftruncate if the file was
5021         nonempty.
5022
5023 2002-12-23  Bruno Haible  <bruno@clisp.org>
5024
5025         * memcoll.c (STRCOLL): New macro.
5026         (memcoll): Use it.
5027
5028 2002-12-22  Bruno Haible  <bruno@clisp.org>
5029
5030         * getstr.h (getstr): Define, to avoid clash with libcurses.
5031         * linebuffer.h (readline): Define, to avoid clash with libreadline.
5032
5033 2002-12-22  Bruno Haible  <bruno@clisp.org>
5034
5035         * getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not HAVE_TM_ZONE.
5036
5037 2002-12-23  Bruno Haible  <bruno@clisp.org>
5038
5039         * getline.h: Include <stddef.h>, for size_t.
5040
5041         * unicodeio.h: Include <stddef.h>, for size_t.
5042         * unicodeio.c: Don't include <stddef.h>.
5043
5044 2002-12-17  Bruno Haible  <bruno@clisp.org>
5045
5046         * canon-host.c (strdup): Remove unused declaration.
5047
5048         * fsusage.c: Include full_read.h.
5049         (get_fs_usage): Use full_read instead of safe_read.
5050
5051         * utime.c (utime_null): Use SAFE_READ_ERROR.
5052
5053 2002-12-11  Bruno Haible  <bruno@clisp.org>
5054
5055         * setenv.h: Rewritten to cope with systems that have setenv() but not
5056         unsetenv().
5057         * setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
5058         modifications:
5059
5060         2002-12-11  Bruno Haible  <bruno@clisp.org>
5061
5062                 * setenv.c (alloca): Fall back to malloc.
5063                 (freea): New macro.
5064                 (setenv): Use freea() to free memory allocated with alloca().
5065
5066         2002-11-13  Bruno Haible  <bruno@clisp.org>
5067
5068                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
5069                 function declarations.
5070                 * unsetenv.c (unsetenv): Likewise.
5071
5072         2002-03-04  Bruno Haible  <bruno@clisp.org>
5073
5074                 Portability to AIX 4.3.3.
5075                 * unsetenv.c: New file, extracted from setenv.c.
5076                 * setenv.c: Move the unsetenv() function to unsetenv.c.
5077
5078         2001-12-20  Bruno Haible  <bruno@clisp.org>
5079
5080                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
5081                 use malloc instead. For SunOS 4.
5082
5083         2001-12-11  Bruno Haible  <bruno@clisp.org>
5084
5085                 * setenv.c: Declare alloca.
5086                 (compar_fn_t): New typedef.
5087                 (KNOWN_VALUE, STORE_VALUE): Use it.
5088
5089         * Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
5090         setenv.h.
5091
5092 2002-12-10  Paul Eggert  <eggert@twinsun.com>
5093
5094         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
5095         * exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
5096         Choose values that are less likely to collide with system fnmatch
5097         options.
5098         * exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
5099         defined (e.g., a pure POSIX system).
5100         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
5101         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
5102
5103 2002-12-06  Jim Meyering  <jim@meyering.net>
5104
5105         * error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
5106
5107         Merge in changes from libc's misc/error.c, in preparation
5108         for the merge of gnulib's changes back into libc.
5109
5110         * error.c (_): Define only if not already defined.
5111         Move definition to follow all #include directives.
5112         Include unlocked-io.h only if !_LIBC.
5113         [_LIBC]: Include <libio/libioP.h>.
5114         [USE_IN_LIBIO]: Include <libio/iolibio.h>
5115         (fflush): Tweak definition to use INTUSE.
5116         (putc): Define.
5117
5118 2002-12-05  Paul Eggert  <eggert@twinsun.com>
5119
5120         * alloca.c [defined emacs]: Include "lisp.h".
5121         (xalloc_die) [defined emacs]: New macro.
5122         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
5123         [! defined emacs]: Include <xalloc.h>.
5124         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
5125         (pointer): Typedef to POINTER_TYPE *.
5126         (malloc): Remove decl; we now always use xmalloc.
5127         (alloca): Use old-style definition, since Emacs needs this.
5128         Check for arithmetic overflow when computing combined size.
5129
5130 2002-12-04  Paul Eggert  <eggert@twinsun.com>
5131
5132         Do not generate unlocked-io.h automatically, since it's easier to
5133         maintain it by hand.
5134
5135         * unlocked-io.h: New file, from GNU diffutils,
5136         but with proper copyright notice and attribution.
5137         * gen-uio: Remove.
5138         * Makefile.am: Add copyright notice.
5139         (libfetish_a_SOURCES): Add unlocked-io.h.
5140         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
5141         (DISTCLEANFILES, io_functions): Remove macros.
5142         (EXTRA_DIST): Remove gen_uio.
5143         (unlocked-io.h): Remove rule.
5144
5145 2002-12-04  Jim Meyering  <jim@meyering.net>
5146
5147         Reflect the fact that stat.c and lstat.c are no longer generated.
5148         * Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
5149         (DISTCLEANFILES): Likewise.
5150         (EXTRA_DIST): Likewise.
5151         (all_local): Don't depend on stat.c or lstat.c.
5152         (stat.c, lstat.c): Remove rules.
5153         (EXTRA_DIST): Remove xstat.in.
5154
5155         * xstat.in: Remove file.  Contents moved into stat.c.
5156         * stat.c: New file.  Contents mostly from xstat.in.
5157         * stat.c: Rework so that it may serve to define rpl_lstat, too.
5158         * lstat.c: New file. Simply #define LSTAT and include stat.c.
5159
5160         * safe-read.c: Rework so that it may serve to define safe_write, too.
5161         * safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
5162
5163 2002-12-03  Jim Meyering  <jim@meyering.net>
5164
5165         * safe-read.c, safe-write.c: Change variable names and comments, but
5166         not semantics, to minimize the differences between these two files.
5167         (safe_read): Change comment to mention SAFE_READ_ERROR.
5168
5169         * safe-read.c (IS_EINTR): Define.
5170         (safe_read): Use IS_EINTR in place of in-function cpp directives.
5171
5172 2002-12-02  Bruno Haible  <bruno@clisp.org>
5173
5174         * safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
5175         Define, taken from safe-read.c.
5176         (INT_MAX): Provide fallback.
5177         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
5178         * safe-write.h (SAFE_WRITE_ERROR): Define.
5179
5180         * safe-read.c (EINTR): Remove definition.
5181         (safe_read): Don't use EINTR if it is absent.
5182
5183 2002-12-02  Jim Meyering  <jim@meyering.net>
5184
5185         * safe-read.c (EINTR): Define.
5186         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
5187         (INT_MAX): Provide fallback.
5188         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
5189
5190         * safe-read.h (SAFE_READ_ERROR): Define.
5191
5192 2002-12-01  Jim Meyering  <jim@meyering.net>
5193
5194         * safe-read.c: (safe_read): Also exit the loop when read returns zero.
5195         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
5196
5197 2002-11-27  Paul Eggert  <eggert@twinsun.com>
5198
5199         * hash.c (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
5200         hash_rehash): Replace `if (limit <= value) abort ();' with
5201         `if (! (value < limit)) abort ();', for readability.
5202
5203 2002-11-26    <karl@gnu.org>
5204
5205         * strdup.c: copy from libc again, with jim's ok.
5206         * .cppi-disable: re-add strdup.c
5207
5208 2002-11-25    <karl@gnu.org>
5209
5210         * strtoll.c: copy from libc, meaning we now #include <strtol.c>
5211         instead of "strtol.c".
5212
5213 2002-11-25  Jim Meyering  <jim@meyering.net>
5214
5215         * mktime.c: Sync from libc, now that it has the latest fix.
5216
5217 2002-11-24    <karl@gnu.org>
5218
5219         * error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
5220         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
5221
5222 2002-11-24  Jim Meyering  <jim@meyering.net>
5223
5224         Update from coreutils:
5225
5226         * mktime.c: Merge in changes from libc.
5227
5228         Avoid a link-time failure on some Linux systems.
5229         * mktime.c (STATIC): Define to be empty (_LIBC) or `static' (otherwise).
5230         (__mon_yday): Declare with the STATIC attribute.
5231         (__mktime_internal): Likewise.
5232         Based on a report from Greg Schafer.
5233
5234 2002-11-23  Jim Meyering  <jim@meyering.net>
5235
5236         * sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
5237         Use `unsigned', not `int', as type of index.
5238
5239         * xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
5240
5241         * fsusage.c: Remove unneeded parentheses around operands of `defined'.
5242
5243 2002-11-22  Paul Eggert  <eggert@twinsun.com>
5244
5245         * hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
5246         hint that one should use `if (! x) abort ();' rather than `assert
5247         (x);', and anyway it's one less thing to worry about configuring.
5248         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
5249         hash_rehash, hash_insert): Use abort rather than assert.
5250
5251 2002-11-22  Paul Eggert  <eggert@twinsun.com>
5252
5253         * quotearg.h: Allow multiple inclusion by surrounding with
5254         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
5255         so that we can be included first.
5256         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
5257         * quotearg.c: Include quotearg.h immediately after config.h.
5258         No need to include stddef.h or sys/types.h any more.
5259         Surround local include files with "", not "<>".
5260         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
5261         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
5262         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
5263         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
5264         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
5265         (ISPRINT): Remove; no longer needed now that we assume C89.
5266
5267         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
5268         Preserve errno.
5269
5270         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
5271         quotearg_char): Use SIZE_MAX rather than
5272         (size_t) -1 when we are talking about "infinity".
5273
5274         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
5275
5276 2002-11-22  Bruno Haible  <bruno@clisp.org>
5277
5278         * safe-read.h: Assume C89. Add comments.
5279         (safe_read): Change return type to size_t.
5280         * safe-read.c (safe_read): Change return type to size_t. Handle byte
5281         counts > SSIZE_MAX correctly.
5282         * safe-write.h: New file.
5283         * safe-write.c: New file.
5284         * full-read.h: New file.
5285         * full-read.c: New file.
5286         * full-write.h: Assume C89. Add comments.
5287         * full-write.c: Include safe-write.h.
5288         (full_write): Rewritten to use safe_write.
5289         Suggested by Jim Meyering and Paul Eggert.
5290
5291 2002-11-21  Bruno Haible  <bruno@clisp.org>
5292
5293         Remove case insensitive option matching.
5294         * argmatch.h (argcasematch): Remove declaration.
5295         (ARGCASEMATCH): Remove macro.
5296         (__xargmatch_internal): Remove case_sensitive argument.
5297         (XARGMATCH): Update.
5298         (XARGCASEMATCH): Remove macro.
5299         * argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
5300         case_sensitive argument.
5301         (argcasematch): Remove function.
5302         (__xargmatch_internal): Remove case_sensitive argument.
5303         (main): Use XARGMATCH instead of XARGCASEMATCH.
5304
5305         * xmalloc.c: Change compile-time error message. Add comment about
5306         required autoconf version.
5307
5308 2002-11-21  Jim Meyering  <jim@meyering.net>
5309
5310         * strdup.c (strdup): Tweak comment and initial #if/#include.
5311
5312         Merge in changes from the coreutils.
5313
5314         2002-09-25  Paul Eggert  <eggert@twinsun.com>
5315         * fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include <stdint.h>.
5316         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
5317         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
5318         int.  Work more efficiently if X is the same width as uintmax_t.
5319         Do not compare X to -1, to avoid bogus compiler warning.
5320         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
5321         Don't assume that f_frsize and f_bsize are the same type.
5322
5323         * mountlist.c: #undef MNT_IGNORE before defining it, to avoid warning
5324         on FreeBSD.
5325
5326         * makepath.c (make_path): Restore umask *before* creating the final
5327         component.
5328         (make_path): Minor reformatting.
5329
5330         * xmalloc.c: Adjust to work with new autoconf macros, AC_FUNC_MALLOC
5331         and AC_FUNC_REALLOC: test #ifndef HAVE_MALLOC/HAVE_REALLOC.
5332
5333         * mountlist.h (ME_DUMMY): Don't count entries of type `auto' as dummy
5334         ones.  At least on GNU/Linux systems, `auto' means something else.
5335         From Michael Stone.
5336
5337 2002-11-20  Paul Eggert  <eggert@twinsun.com>
5338
5339         Merge argmatch cleanups from Bison.  Assume C89.
5340
5341         * argmatch.c: Include config.h here, not in argmatch.h.
5342         Include stdlib.h, for EXIT_FAILURE.
5343         Always include <string.h>, since we assume C89.
5344         (EXIT_FAILURE): Remove pre-C89 bug workaround.
5345         * argmatch.h: Do not include <config.h> or <sys/types.h>.
5346         Include <stddef.h> instead, since it's all we need for size_t.
5347         (PARAMS): Remove.  All uses removed.
5348         (ARRAY_CARDINALITY): Do not bother to #undef.
5349         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
5350         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
5351         Remove unnecessary parentheses.
5352         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
5353         Insert necessary parentheses.
5354         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
5355         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
5356
5357 2002-11-19  Bruno Haible  <bruno@clisp.org>
5358
5359         * mbswidth.c: Include mbswidth.h right at the beginning.
5360         * mbswidth.h: Include <stddef.h>, for size_t.
5361
5362         * mbswidth.h (PARAMS): Remove macro.
5363         (mbswidth, mbsnwidth): Use ANSI C function declarations.
5364         * mbswidth.c (mbswidth, mbsnwidth): Likewise.
5365
5366         * gcd.h (PARAMS): Remove macro.
5367         (gcd): Use ANSI C function declarations.
5368         * gcd.c (gcd): Likewise.
5369
5370 2002-11-15  Bruno Haible  <bruno@clisp.org>
5371
5372         * strcspn.c: Include <stddef.h>.
5373         (strcspn): Use ANSI C function declaration. Change return type to
5374         size_t. Use NULL.
5375         * strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
5376         (strpbrk): Use NULL.
5377         * strpbrk.h (PARAMS): Remove macro.
5378         (strpbrk): Use ANSI C function declaration.
5379         * strstr.c: Don't include <sys/types.h>.
5380         * strstr.h (PARAMS): Remove macro.
5381         (strstr): Use ANSI C function declarations.
5382
5383 2002-11-06  Bruno Haible  <bruno@clisp.org>
5384
5385         * gcd.h (gcd): Change argument type to 'unsigned long'.
5386         * gcd.c (gcd): Likewise.
5387
5388 2002-11-05  Bruno Haible  <bruno@clisp.org>
5389
5390         * gcd.h: New file, from gettext-0.11.5.
5391         * gcd.c: New file, from gettext-0.11.5.
5392
5393 2002-11-05  Bruno Haible  <bruno@clisp.org>
5394
5395         * error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
5396         * getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
5397         * obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
5398         * regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
5399
5400         * argmatch.c: Include gettext.h instead of <locale.h> and <libintl.h>.
5401         * makepath.c: Include gettext.h instead of <locale.h> and <libintl.h>.
5402
5403         * closeout.c: Include gettext.h instead of <libintl.h>.
5404         * human.c: Include gettext.h instead of <libintl.h>.
5405         * quotearg.c: Include gettext.h instead of <libintl.h>.
5406         * rpmatch.c: Include gettext.h instead of <libintl.h>.
5407         * unicodeio.c: Include gettext.h instead of <libintl.h>.
5408         * userspec.c: Include gettext.h instead of <libintl.h>.
5409         * version-etc.c: Include gettext.h instead of <libintl.h>.
5410         * xmalloc.c: Include gettext.h instead of <libintl.h>.
5411         (textdomain): Remove definition.
5412         * xmemcoll.c: Include gettext.h instead of <libintl.h>.
5413
5414         * long-options.c: Remove include of <libintl.h> and definition of _.
5415         * same.c: Remove include of <libintl.h> and definition of _.
5416
5417 2002-11-04  Bruno Haible  <bruno@clisp.org>
5418
5419         * stpcpy.h: New file, from GNU gettext-0.11.5.
5420         * strcase.h: New file, from GNU gettext-0.11.5.
5421         * strpbrk.h: New file, from GNU gettext-0.11.5.
5422         * strstr.h: New file, from GNU gettext-0.11.5.
5423         * xgetcwd.h: New file, from GNU gettext-0.11.5.
5424
5425 2002-05-09  Bruno Haible  <bruno@clisp.org>
5426
5427         * config.charset: Update for newest glibc. Add canonical names
5428         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
5429
5430 2002-05-09  Bruno Haible  <bruno@clisp.org>
5431
5432         * localcharset.c (get_charset_aliases): Add more Windows specific
5433         aliases.
5434
5435 2002-05-08  Owen Taylor  <otaylor@redhat.com>
5436
5437         * config.charset: A few additions for Solaris.
5438
5439 2001-12-05  Bruno Haible  <bruno@clisp.org>
5440
5441         * localcharset.c (locale_charset): Don't return an empty string.
5442
5443 2001-10-23  Bruno Haible  <haible@clisp.cons.org>
5444
5445         * config.charset: msdos in uk_UA uses CP1125.
5446
5447 2001-08-05  Bruno Haible  <haible@clisp.cons.org>
5448
5449         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
5450         * localcharset.c (locale_charset): Declare as extern "C".
5451
5452 2002-02-15  Bruno Haible  <bruno@clisp.org>
5453
5454         * config.charset [msdosdjgpp]: For Russian, use CP866.
5455
5456 2002-02-11  Bruno Haible  <bruno@clisp.org>
5457
5458         * config.charset: Add support for NetBSD.
5459
5460 2002-09-25    <karl@gnu.org>
5461
5462         * strdup.c: copy from libc/string (via ../config/srclist*).
5463         * getopt*: copy from libc/posix.
5464         * gettext.h: copy from gettext.
5465         * .cppi-disable: add strdup.c, gettext.h.
5466
5467 2002-07-01  Jim Meyering  <meyering@lucent.com>
5468
5469         * c-stack.c: Include sys/time.h.
5470         From Volker Borchert.
5471
5472 2002-06-11  Paul Eggert  <eggert@twinsun.com>
5473
5474         * fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
5475         New macro.  Use it uniformly instead of
5476         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
5477         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
5478         reported by Vin Shelton.
5479
5480 2002-06-22  Jim Meyering  <meyering@lucent.com>
5481
5482         * fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
5483         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
5484
5485 2002-06-22  Paul Eggert  <eggert@twinsun.com>
5486
5487         * c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
5488         Do not assume SA_SIGINFO behavior.
5489         Bug reported by Jim Meyering on NetBSD 1.5.2.
5490
5491 2002-06-22  Jim Meyering  <meyering@lucent.com>
5492
5493         * c-stack.c, c-stack.h: New files, from diffutils-2.8.2.
5494
5495         * exitfail.c, exitfail.h: Likewise.
5496         * Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
5497
5498         * Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
5499         of fnmatch.h.
5500         (EXTRA_DIST): Add fnmatch_loop.c.
5501         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
5502
5503         * fnmatch_loop.c: New file, from diffutils-2.8.2.
5504         * fnmatch.c: Update from diffutils-2.8.2.
5505         * fnmatch_.h: New file.  From diffutils-2.8.2.
5506         * fnmatch.h: Remove file.
5507
5508 2002-06-18  Paul Eggert  <eggert@twinsun.com>
5509
5510         * file-type.h: Report an error if neither S_ISREG nor
5511         S_IFREG is defined, instead of using a test specific to glibc
5512         2.2.  This should be safe, since POSIX requires S_ISREG and
5513         Unix Version 7 had S_IFREG.  We don't need to check for
5514         <sys/types.h> since we don't use any symbols that it defines.
5515
5516 2002-06-15  Jim Meyering  <meyering@lucent.com>
5517
5518         * file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
5519         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
5520         have been included before this file.
5521
5522 2002-06-13  Richard Dawe  <richdawe@bigfoot.com>
5523
5524         * Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than $@-t,
5525         so that each temporary file name is unique and valid in the first
5526         8 characters, for operation under DOS.
5527
5528 2002-06-15  Jim Meyering  <meyering@lucent.com>
5529
5530         Work even with DJGPP 2.03, which lacks support for symlinks.
5531         From Richard Dawe.
5532         * xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
5533         is defined.
5534         * lchown.c (S_ISLNK): Likewise.
5535
5536 2002-06-14  Jim Meyering  <meyering@lucent.com>
5537
5538         * file-type.h: Use the version from diffutils-2.8.2.
5539         * file-type.c: Likewise.
5540
5541 2002-05-27  Jim Meyering  <meyering@lucent.com>
5542
5543         Fix a problem seen only on nonconforming systems whereby ls.c's
5544         use of localtime, and then of gettimeofday would cause trouble:
5545         the localtime call used to initialize rpl_gettimeofday's save
5546         mechanism would clobber ls's current local time information so
5547         that in any long listing the first file would always be listed
5548         with date 1970-01-01.  Analysis by Volker Borchert.
5549
5550         * gettimeofday.c (localtime): Undefine.
5551         (rpl_localtime): New function.
5552
5553 2002-05-22  Jim Meyering  <meyering@lucent.com>
5554
5555         * Makefile.am (libfetish_a_SOURCES): Add file-type.c and file-type.h.
5556         * file-type.h: New file.
5557         * file-type.c (file_type): New file/function.  Extracted from diffutils.
5558
5559 2002-04-29  Paul Eggert  <eggert@twinsun.com>
5560
5561         * hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
5562
5563 2002-04-28  Paul Eggert  <eggert@twinsun.com>
5564
5565         * sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
5566         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
5567         of 127, since 64 is the largest conceivable number for ancient
5568         nonstandard hosts.
5569         * sig2str.c: Do not include <sys/wait.h>; no longer needed.
5570
5571 2002-04-28  Jim Meyering  <meyering@lucent.com>
5572
5573         * sig2str.c (WTERMSIG): Remove definition (unused).
5574
5575 2002-04-28  Paul Eggert  <eggert@twinsun.com>
5576
5577         * sig2str.h, sig2str.c: New files.
5578         * Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
5579
5580 2002-04-24  Jim Meyering  <meyering@lucent.com>
5581
5582         * gettext.h: New file, from Gettext.
5583         * Makefile.am (INCLUDES): Remove -I../intl.
5584         (libfetish_a_SOURCES): Add gettext.h.
5585
5586 2002-04-16  Jim Meyering  <meyering@lucent.com>
5587
5588         * readutmp.h (UT_TYPE): Remove definition (now in who.c).
5589         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
5590         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
5591
5592 2002-04-12  Jim Meyering  <meyering@lucent.com>
5593
5594         * dirfd.h (dirfd): Elide prototype if dirfd is a macro.
5595
5596 2002-03-10  Jim Meyering  <meyering@lucent.com>
5597
5598         * makepath.c (make_path): Remove a comma from a diagnostic.
5599         Suggestion from Santiago Vila.
5600
5601 2002-03-08  Jim Meyering  <meyering@lucent.com>
5602
5603         * rename.c: Mention that this wrapper is needed also on
5604         mips-dec-ultrix4.4 systems.
5605
5606 2002-03-02  Jim Meyering  <meyering@lucent.com>
5607
5608         * gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
5609         not HAVE_CLOCK_SETTIME.
5610
5611 2002-02-27  Paul Eggert  <eggert@twinsun.com>
5612
5613         * nanosleep.h: Rename to....
5614         * timespec.h: New name for nanosleep.h.  All uses changed.
5615
5616         * gettime.c: New file.
5617         * settime.c: New file.
5618         * stime.c: Remove.
5619
5620         * Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
5621         timespec.h.  Remove nanosleep.h.
5622
5623 2002-02-25  Paul Eggert  <eggert@twinsun.com>
5624
5625         * acl.c, acl.h: New files.
5626         * Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
5627
5628 2002-02-24  Jim Meyering  <meyering@lucent.com>
5629
5630         * strnlen.c (strnlen): Define-away/undef so that an inconsistent
5631         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
5632         cause trouble.  Reported by Nelson Beebe.
5633
5634 2002-02-23  Paul Eggert  <eggert@twinsun.com>
5635
5636         * path-concat.c (xpath_concat): Reorder code to pacify
5637         compilers that don't know that xalloc_die never returns.
5638
5639 2002-02-20  Jim Meyering  <meyering@lucent.com>
5640
5641         * getdate.c: Regenerate using bison-1.33.
5642
5643 2002-02-15  Paul Eggert  <eggert@twinsun.com>
5644
5645         * posixver.c, posixver.h: New files.
5646         * Makefile.am (libfetish_a_SOURCES): Add them.
5647
5648 2002-02-02  Paul Eggert  <eggert@twinsun.com>
5649             Bruno Haible  <bruno@clisp.org>
5650
5651         * unicodeio.h (print_unicode_char): Add exit_on_error argument.
5652         (fwrite_success_callback): New declaration.
5653         * unicodeio.c (unicode_to_mb): New function, extracted from
5654         print_unicode_char. Call failure callback instead of error.
5655         (fwrite_success_callback): New function.
5656         (exit_failure_callback): New function.
5657         (fallback_failure_callback): New function.
5658         (print_unicode_char): Call unicode_to_mb.
5659
5660 2002-01-26  Jim Meyering  <meyering@lucent.com>
5661
5662         * Makefile.am (getdate$U.o): Depend on unlocked-io.h.
5663
5664 2002-01-22  Jim Meyering  <meyering@lucent.com>
5665
5666         * Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
5667         Otherwise, some versions of automake would omit the rule that makes
5668         Makefile from Makefile.in.
5669
5670 2001-01-21  Paul Eggert  <eggert@twinsun.com>
5671
5672         * xmemcoll.h, xmemcoll.c: New files.
5673         * Makefile.am (libfetish_a_SOURCES): Add them.
5674         * memcoll.c: Include errno.h, and declare errno if not defined.
5675         (memcoll): Set errno to zero if there is no error.
5676
5677         * quotearg.c (quotearg_buffer_restyled):
5678         Fix bug with quoting buffers containing NUL when backslashing escapes.
5679         This bug was exposed by the other changes in this patch.
5680         (quotearg_n_options): New arg ARGSIZE.
5681         All callers changed.
5682         (quoting_options_from_style): New function.
5683         (quotearg_n_style): Use it.
5684         (quotearg_n_style_mem): New function.
5685
5686         * quotearg.h (quotearg_n_style_mem): New function.
5687
5688 2002-01-16  Jim Meyering  <meyering@lucent.com>
5689
5690         * getdate.y: Add three semicolons, each just before a closing brace.
5691         Bison (as of version 1.31) no longer papers over that mistake.
5692
5693 2002-02-14  Paul Eggert  <eggert@twinsun.com>
5694
5695         * backupfile.c (ISDIGIT): Comment fix.
5696         * getdate.y (ISDIGIT): Likewise.
5697         * posixtm.c (ISDIGIT, year): Likewise.
5698         * strverscmp.c (ISDIGIT): Likewise.
5699         * userspec.c (ISDIGIT): Likewise.
5700
5701 2002-01-05  Jim Meyering  <meyering@lucent.com>
5702
5703         * version-etc.c (version_etc_copyright): Update copyright year.
5704
5705 2001-01-19  Paul Eggert  <eggert@twinsun.com>
5706
5707         * closeout.c (close_stdout_status): If ferror (stdout), do
5708         not silently exit merely because the output buffer happens to
5709         have nothing pending.
5710
5711 2001-12-18  Paul Eggert  <eggert@twinsun.com>
5712
5713         See the big note in ../ChangeLog.
5714         * human.c (suffixes): Prefer K to k for 1024.
5715         (generate_suffix_backwards): New function.
5716         (human_readable_inexact): Use it.
5717         * xstrtol.c (__xstrtol): If there is no number but there
5718         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
5719         Accept 'K' as well as 'k'.
5720
5721 2001-12-15  Jim Meyering  <meyering@lucent.com>
5722
5723         * regex.h (__restrict_arr): Update from libc.
5724
5725         * mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
5726         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
5727         (STREQ): Define.
5728
5729 2001-12-10  Jim Meyering  <meyering@lucent.com>
5730
5731         * linebuffer.c: Remove explicit declarations of xmalloc and xrealloc,
5732         Instead, include "xalloc.h".
5733         (initbuffer): Don't cast xmalloc return value to char*.
5734         (readline): Reword comment.
5735         Don't cast xrealloc return value to char*
5736         Return NULL, not 0.
5737
5738 2001-12-09  Jim Meyering  <meyering@lucent.com>
5739
5740         * modechange.c (mode_compile): Add cast to avoid pedantic warning about
5741         `signed and unsigned type in conditional expression'.
5742         * posixtm.c (posix_time_parse): Likewise.
5743
5744         * xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
5745
5746         * readtokens.c (readtoken): Declare an index to be of type unsigned
5747         to avoid a pedantic warning.
5748
5749         * getstr.c: Don't include assert.h.
5750         (getstr): Remove warning-evoking assertions.
5751         Return -1 if offset parameter is out of bounds.
5752         Change the type of a local from int to size_t.
5753
5754         * strftime.c (my_strftime_localtime_r): Include this function
5755         definition in the `#if ! HAVE_TM_GMTOFF' block.
5756
5757         * xgethostname.c: Remove declarations of xmalloc and xrealloc.
5758         Include xalloc.h instead.
5759
5760 2001-12-02  Jim Meyering  <meyering@lucent.com>
5761
5762         * tempname.c: Don't declare getenv, thus reverting the change of
5763         2001-11-18.  It's no longer necessary, now that stdlib.h is always
5764         included.
5765
5766         * regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
5767         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
5768
5769 2001-11-30  Akim Demaille  <akim@epita.fr>
5770
5771         * xstrdup.c: Include xalloc.h, so that xstrdup is declared
5772         before being defined.
5773
5774 2001-11-27  Paul Eggert  <eggert@twinsun.com>
5775
5776         * quotearg.h (quotearg_n, quotearg_n_style):
5777         First arg is int, not unsigned.
5778         * quotearg.c (quotearg_n, quotearg_n_style): Likewise.
5779         (SIZE_MAX, UINT_MAX): New macros.
5780         (quotearg_n_options): Abort if N is negative.
5781         Avoid overflow check on hosts where size_t is 64 bits and int
5782         is 32 bits, as overflow is impossible there.
5783         Fix off-by-one typo that caused unnecessary reallocation.
5784
5785 2001-11-27  Jim Meyering  <meyering@lucent.com>
5786
5787         * tempname.c: Merge with version from libc.
5788         * regex.c: Likewise.
5789
5790         * tempname.c: Include stdlib.h unconditionally.  On some old systems
5791         for which STDC_HEADERS is 0, it was not included, resulting in a
5792         warning about an integer-to-pointer conversion problem with getenv.
5793         Reported by Volker Borchert.
5794
5795 2001-11-26  Jim Meyering  <meyering@lucent.com>
5796
5797         * gtod.h: Remove file.
5798         * Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
5799         * gettimeofday.c: Don't include gtod.h.
5800         (GTOD_init): Remove function.
5801         (rpl_gettimeofday): Do its job here instead, rather than aborting.
5802         Suggestion from Volker Borchert.
5803
5804 2001-11-23  Jim Meyering  <meyering@lucent.com>
5805
5806         * hash.h (struct hash_table): Don't define here.  Merely declare it.
5807         * hash.c (struct hash_table): Define it here instead.
5808
5809 2001-11-22  Jim Meyering  <meyering@lucent.com>
5810
5811         * hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
5812
5813 2001-11-18  Paul Eggert  <eggert@twinsun.com>
5814
5815         * tempname.c (TMP_MAX): Remove; no longer needed.
5816         (TEMPORARIES): New macro.
5817         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
5818         removes an artificial limitation (e.g. HP-UX 10.20, where
5819         TMP_MAX is 17576).
5820
5821 2001-11-18  Jim Meyering  <meyering@lucent.com>
5822
5823         * tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
5824         on SunOS 4.
5825
5826         * Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
5827         files will be created before anything else.
5828
5829 2001-11-17  Jim Meyering  <meyering@lucent.com>
5830
5831         * modechange.c (mode_adjust): Fix error introduced on 1999-04-26
5832         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
5833         rather than group writable.  Patch by Juan F. Codagnone.
5834
5835         * readtokens.c: Remove explicit declarations of xmalloc and xrealloc,
5836         Instead, include "xalloc.h".
5837
5838         * mountlist.c: Include unlocked-io.h after all system headers.
5839         Remove explicit declarations of xmalloc, xrealloc,
5840         and xstrdup.  Instead, include "xalloc.h".
5841
5842         * argmatch.c, closeout.c, error.c, exclude.c: Include unlocked-io.h.
5843         * fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c: Likewise.
5844         * mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
5845
5846         * regex.c, sha.c, version-etc.c, yesno.c: Likewise.
5847         Reported by Padraig Brady.
5848
5849         * mkstemp.c: #undef mkstemp.
5850         Include config.h.
5851         (rpl_mkstemp): Rename from mkstemp.
5852         Protoize.
5853
5854 2001-11-16  Jim Meyering  <meyering@lucent.com>
5855
5856         * physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
5857         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
5858         determine the amount of total physical memory, use pstat_getstatic.
5859         HPUX-11 doesn't define _SC_PHYS_PAGES.
5860         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
5861         If sysconf couldn't be used to determine the amount of available
5862         physical memory, use both pstat_getstatic and pstat_getdynamic.
5863         Based on a patch from Bob Proulx.
5864
5865 2001-11-05  Jim Meyering  <meyering@lucent.com>
5866
5867         * xstat.in (slash_aware_lstat): Correct a misleading comment.
5868
5869 2001-11-03  Jim Meyering  <meyering@lucent.com>
5870
5871         * argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
5872         in argmatch_to_argument call.
5873
5874         * dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
5875         argument.
5876
5877         * hash.c (hash_clear): Fix a bug that could lead to an infloop or
5878         e.g., a fault due to an attempt to free a NULL pointer.
5879
5880 2001-11-01  Jim Meyering  <meyering@lucent.com>
5881
5882         * dirfd.c, dirfd.h: New files.
5883         * Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
5884
5885         * hash.c (hash_print) [TESTING]: Clean up.
5886
5887 2001-10-22  Paul Eggert  <eggert@twinsun.com>
5888
5889         * hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
5890         to avoid a warning if -Wall.
5891
5892 2001-10-21  Paul Eggert  <eggert@twinsun.com>
5893
5894         * regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
5895
5896 2001-10-21  Jim Meyering  <meyering@lucent.com>
5897
5898         * obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
5899         this code would end up calling gettext even in packages built
5900         with --disable-nls.
5901         * getopt.c (_): Likewise.
5902         * regex.c (_): Likewise.
5903
5904 2001-10-20  Paul Eggert  <eggert@twinsun.com>
5905
5906         * error.c (strerror_r): Do not declare unless !_LIBC.
5907         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
5908         Use strerror_r that is only a macro, even if it is not a function.
5909         (strerror): Check for HAVE_DECL_STRERROR before declaring.
5910         (private_strerror): Use prototypes, not old-style function definition.
5911         (print_errno_message): New function.
5912         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
5913         char*-flavored one.
5914         (error_tail, error, error_at_line): Use it.
5915
5916 2001-10-11  Jim Meyering  <meyering@lucent.com>
5917
5918         * argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
5919         and quote_n (1, ... to avoid clobbering a buffer.
5920
5921 2001-10-05  Jim Meyering  <meyering@lucent.com>
5922
5923         * Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and hash-pjw.h.
5924         * hash-pjw.c: New file (factored out of fileutils' remove.c).
5925         * hash-pjw.h: New file.
5926
5927 2001-09-30  Jim Meyering  <meyering@lucent.com>
5928
5929         * mountlist.c [MOUNTED_GETFSSTAT]:
5930         Include <sys/ucred.h>, for Apple Darwin.
5931         Include sys/mount.h and sys/fs_types.h only if available.
5932         (FS_TYPE): Define.
5933         (read_filesystem_list): Use FS_TYPE.
5934
5935 2001-09-29  Paul Eggert  <eggert@twinsun.com>
5936
5937         * exclude.c (excluded_filename): 0 -> false, since it's
5938         a boolean context.
5939
5940 2001-09-28  Paul Eggert  <eggert@twinsun.com>
5941
5942         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
5943         #defines strtoimax.  Also treat the other strto* functions
5944         like strtoimax.
5945
5946         * xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
5947         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
5948         (strtoimax, strtoumax): Do not declare if already defined as a macro.
5949
5950 2001-09-26  Jim Meyering  <meyering@lucent.com>
5951
5952         Most macros in unlocked-io.h had the wrong number of arguments.
5953         * gen-uio: New script.
5954         (USE_UNLOCKED_IO): Define to 1 if not already defined.
5955         * unlocked-io.hin: Remove file.
5956         * Makefile.am (unlocked-io.h): Rewrite to use a separate script,
5957         rather than trying to embed it here.
5958         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
5959         Reported by Padraig Brady.
5960
5961 2001-09-25  Volker Borchert  <bt@teknon.de>
5962
5963         * gettimeofday.c (rpl_gettimeofday): Declare local variable `result'.
5964
5965 2001-09-23  Jim Meyering  <meyering@lucent.com>
5966
5967         * mountlist.c: Remove useless parentheses in #if directives.
5968         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
5969         the deprecated MOUNTED symbol is no longer defined in mntent.h.
5970
5971 2001-09-22  Jim Meyering  <meyering@lucent.com>
5972
5973         * localcharset.c: Update from latest gettext.
5974         * config.charset: Likewise.
5975
5976 2001-09-20  Jim Meyering  <meyering@lucent.com>
5977
5978         * xstrtol.c (strtoimax): Guard declaration with
5979         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
5980         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
5981         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
5982         (strtoumax): Likewise, for completeness (it wasn't necessary).
5983
5984 2001-09-06  Paul Eggert  <eggert@twinsun.com>
5985
5986         * strtoimax.c (HAVE_LONG_LONG):
5987         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
5988         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
5989         to work around bug in IBM C compiler.
5990
5991 2001-09-16  Jim Meyering  <meyering@lucent.com>
5992
5993         * mkdir.c: New file.
5994
5995 2001-09-04  Paul Eggert  <eggert@twinsun.com>
5996
5997         * xgetcwd.c: Revert some of the previous change; intead,
5998         fix the HAVE_GETCWD_NULL code to behave more like the
5999         !HAVE_GETCWD_NULL code used to.
6000
6001         Include "xalloc.h".
6002         (xgetcwd): Do not return NULL when memory is exhausted; instead,
6003         invoke xalloc_die.
6004
6005 2001-09-04  Paul Eggert  <eggert@twinsun.com>
6006
6007         * xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
6008         Use ssize_t, not int, to store result of readlink.
6009         Check for ssize_t overflow as well as size_t overflow,
6010         as POSIX says the result of readlink is implementation-defined
6011         when ssize_t overflows.
6012         Remove unnecessary cast to char*.
6013         Use free+malloc instead of realloc, as the storage doesn't need
6014         to be preserved and it's clearer and can be more efficient that way.
6015         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
6016         * xreadlink.h (xreadlink): Update prototype.
6017
6018 2001-09-03  Paul Eggert  <eggert@twinsun.com>
6019
6020         * exclude.c (fnmatch_no_wildcards): Fix confusion between
6021         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
6022         spotted by Jim Meyering.
6023
6024 2001-09-03  Jim Meyering  <meyering@lucent.com>
6025
6026         * xreadlink.c (xreadlink): Preserve errno around `free' during failure.
6027
6028 2001-09-03  Paul Eggert  <eggert@twinsun.com>
6029
6030         * xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
6031         like the HAVE_GETCWD_NULL code.
6032         Include pathmax.h if not HAVE_GETCWD.
6033         Do not include xalloc.h.
6034         (INITIAL_BUFFER_SIZE): New symbol.
6035         Do not use xmalloc / xrealloc, since the caller is responsible for
6036         handling errors.  Preserve errno around `free' during failure.
6037         Do not overrun buffer when using getwd.
6038
6039 2001-09-03  Paul Eggert  <eggert@twinsun.com>
6040
6041         * xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
6042         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use getcwd (NULL, 0).
6043
6044 2001-09-02  Jim Meyering  <meyering@lucent.com>
6045
6046         * error.c: Update from GNU libc.
6047
6048 2001-09-01  Jim Meyering  <meyering@lucent.com>
6049
6050         * xreadlink.c: New file.
6051         * xreadlink.h: New file.
6052         * Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and xreadlink.h.
6053
6054         * regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
6055         doesn't conflict with sparc Solaris 7's definition in
6056         /usr/include/sys/int_types.h.
6057
6058         * exclude.c: Use `""', not `<>' to #include non-system header files.
6059         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
6060         and strncasecmp as r-values.  Unixware didn't have declarations.
6061
6062 2001-08-31  Jim Meyering  <meyering@lucent.com>
6063
6064         * xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
6065         Use an initial, malloc'd, buffer of length 128 rather than
6066         a statically allocated one of length 1024.
6067
6068 2001-08-30  Paul Eggert  <eggert@twinsun.com>
6069
6070         * xgetcwd.c: Don't include pathmax.h.
6071         Include stdlib.h and unistd.h if available.
6072         Include xalloc.h.
6073         (xmalloc, xstrdup, free): Remove decls.
6074         (xgetcwd): Don't assume sizes fit in unsigned.
6075         Check for overflow when computing sizes.
6076         Simplify reallocation code.
6077
6078 2001-08-28  Paul Eggert  <eggert@twinsun.com>
6079
6080         * Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
6081
6082         * strtoimax.c: Renamed from strtoxmax.c, removing the
6083         old strtoimax.c.
6084
6085         Also, make the following further changes to make this file's
6086         configuration more similar to that of strtol.c:
6087         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
6088         (strtoumax, uintmax_t, strtoull, strtol): Remove.
6089         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
6090         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
6091         changed to signed values.
6092
6093         And make the following changes as well:
6094         Fix copyright notice, as 1999 was missing.
6095         (verify): New macro.
6096         (strtoimax): Check sizes at compile-time, not run-time.
6097         Prefer strtol to strtoll if both work.
6098         (main): Remove; it was not that useful and was a pain to maintain.
6099
6100         * strtoumax.c: Include strtoimax.c, not strtouxmax.c.
6101
6102 2001-08-30  Paul Eggert  <eggert@twinsun.com>
6103
6104         * savedir.c (savedir): Remove size parameter, as POSIX says that
6105         a directory's st_size can have an arbitrary value, so the old
6106         usage could waste an arbitrary amount of memory.  All uses
6107         changed.
6108         * savedir.h: Update prototype.
6109
6110 2001-08-30  Paul Eggert  <eggert@twinsun.com>
6111
6112         * xstrtol.c (strtoimax): New decl.
6113
6114 2001-08-28  Paul Eggert  <eggert@twinsun.com>
6115
6116         * xstrtol.h: Add copyright notice.
6117         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
6118         LONGINT_INVALID_SUFFIX_CHAR.
6119
6120 2001-08-30  Paul Eggert  <eggert@twinsun.com>
6121
6122         * quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
6123         tm to be declared.
6124
6125 2001-08-30  Paul Eggert  <eggert@twinsun.com>
6126
6127         * hash.c: Remove '2001' from copyright notice.
6128
6129 2001-08-30  Paul Eggert  <eggert@twinsun.com>
6130
6131         * full-write.h: New file.
6132         * Makefile.am (libfetish_a_SOURCES): Add full-write.h.
6133         * full-write.c: Correct credits, as cccp.c no longer
6134         exists and anyway it was so heavily changed from the old cccp
6135         code as to be unrecognizable.  Include full-write.h.
6136         (full_write) Return size_t, with short writes meaning failure.
6137         All callers changed.  This fixes a bug with large buffers
6138         on 64-bit hosts.
6139         * utime.c: Include full-write.h.
6140
6141 2001-08-30  Paul Eggert  <eggert@twinsun.com>
6142
6143         Merge 'exclude' changes from tar 1.13.22.
6144         This fixes one or two unlikely storage allocation overflow bugs,
6145         but doesn't change user-visible behavior otherwise.
6146
6147 2001-08-30  Paul Eggert  <eggert@twinsun.com>
6148
6149         * exclude.c (bool): Declare, perhaps by including stdbool.h.
6150         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
6151         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
6152         Include if available.
6153         (<xalloc.h>): Include
6154         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
6155         (verify): New macro.  Use it to verify that EXCLUDE macros do not
6156         collide with FNM macros.
6157         (struct patopts): New struct.
6158         (struct exclude): Use it, as exclude patterns now come with options.
6159         (new_exclude): Support above changes.
6160         (new_exclude, add_exclude_file):
6161         Initial size must now be a power of two to simplify overflow checking.
6162         (free_exclude, fnmatch_no_wildcards): New function.
6163         (excluded_filename): No longer requires options arg, as the options
6164         are determined by add_exclude.  Now returns bool, not int.
6165         (excluded_filename, add_exclude):
6166         Add support for the fancy new exclusion options.
6167         (add_exclude, add_exclude_file): Now takes int options arg.
6168         Check for arithmetic overflow when computing sizes.
6169         (add_exclude_file): xrealloc might modify errno, so don't
6170         realloc until after errno might be used.
6171
6172         * exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
6173         New macros.
6174         (free_exclude): New decl.
6175         (add_exclude, add_exclude_file): Now takes int options arg.
6176         (excluded_filename): No longer requires options arg, as the options
6177         are determined by add_exclude.  Now returns bool, not int.
6178
6179 2001-08-30  Paul Eggert  <eggert@twinsun.com>
6180
6181         * alloca.c (alloca): Arg is of type size_t, not unsigned.
6182
6183 2001-08-27  Jim Meyering  <meyering@lucent.com>
6184
6185         * Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
6186
6187         * version-etc.c (N_): Remove definition.
6188         Revert most of last change.
6189         Instead, simply don't mark the `Copyright...' string for translation.
6190         Based on advice from Paul Eggert.
6191
6192         * strtoxmax.c: Tweak comment.
6193
6194 2001-08-26  Jim Meyering  <meyering@lucent.com>
6195
6196         * version-etc.c (version_etc_copyright_fmt): Replace literal year
6197         of copyright with `%s' so translators don't get an untranslated
6198         message in 2002.
6199         (COPYRIGHT_YEAR): Define.
6200         (version_etc): Use fprintf rather than fputs.
6201         Suggestion from Ulrich Drepper.
6202
6203         * Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
6204
6205         * strtoll.c: New file, from GNU libc.
6206         * xstrtoimax.c: New file.
6207
6208         * xstrtol.h: Add xstrtoimax.
6209         * strtoumax.c: New file.  Simply include "strtoumax.c".
6210         * strtoimax.c: New file.  Likewise, but first define STRTOUXMAX_SIGNED.
6211
6212         * strtoumax.c: Factor to work both for unsigned and signed types, ...
6213         * strtoxmax.c: ... then renamed to this.
6214
6215 2001-08-13  Paul Eggert  <eggert@twinsun.com>
6216
6217         * Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
6218         Port to Solaris 8, where 'sed' requires a space after the 'r'
6219         command, and where sh dislikes "$/".  Clean up the spacing a bit.
6220         Redirect output to $tmp just once.
6221
6222 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
6223
6224         * addext.c (<errno.h>): Include.
6225         (errno): Declare if not defined.
6226         (addext): Work correctly when pathconf returns -1 and leaves
6227         errno alone because there is no limit.  Also, work even if
6228         pathconf returns a value greater than SIZE_MAX.
6229
6230 2001-08-12  Jim Meyering  <meyering@lucent.com>
6231
6232         * xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
6233         Simply `return getcwd (NULL, 0);'.
6234         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
6235         Use 1300 as initial value for length, not PATH_MAX.
6236
6237         * pathmax.h: Clean up cpp syntax.
6238
6239 2001-08-12  Jim Meyering  <meyering@lucent.com>
6240
6241         * gettimeofday.c: New file.
6242         * gtod.h: New file.
6243         * Makefile.am (libfetish_a_SOURCES): Add gtod.h.
6244
6245 2001-08-04  Jim Meyering  <meyering@lucent.com>
6246
6247         * error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if stmt,
6248         to get in sync with glibc.
6249
6250 2001-08-03  Paul Eggert  <eggert@twinsun.com>
6251
6252         The following changes are from gettext 0.10.39 as maintained by
6253         Bruno Haible.
6254
6255         * mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
6256         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
6257         with inverted sense.  All uses changed.
6258
6259         * mbswidth.c: Don't include <limits.h>.
6260         Include <stdlib.h> and <string.h> unconditionally.
6261         (iswcntrl, mbsinit, ISCNTRL): New macros.
6262         (mbsnwidth): Use K&R style function declarations.
6263         Don't bother checking for MB_LEN_MAX == 1, since the compiler
6264         can optimize it when MB_CUR_MAX == 1.
6265         The width of control characters is zero, not 1.
6266
6267 2001-07-15  Jim Meyering  <meyering@lucent.com>
6268
6269         * Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
6270         (BUILT_SOURCES): Add unlocked-io.h.
6271         (io_functions): Define.
6272         (unlocked-io.h): New rule.
6273         (DISTCLEANFILES): Add unlocked-io.h.
6274         (all-local): Depend on unlocked-io.h, to ensure it is created.
6275
6276         * unlocked-io.hin: New file
6277
6278         * regex.c: Update from glibc.
6279
6280 2001-07-05  Jim Meyering  <meyering@lucent.com>
6281
6282         * Makefile.am (noinst_HEADERS): Remove definition, per new automake
6283         recommendation.
6284         (libfetish_a_SOURCES): Put all .h files here instead.
6285         Remove a thus-exposed (better checks in automake) duplicate and
6286         two unnecessary .h files.
6287
6288 2001-06-11  Jim Meyering  <meyering@lucent.com>
6289
6290         * regex.c: Update from GNU libc.
6291
6292 2001-05-27  Jim Meyering  <meyering@lucent.com>
6293
6294         * readutmp.h (UT_TYPE): Define.
6295
6296 2001-05-24  Jim Meyering  <meyering@lucent.com>
6297
6298         * argmatch.c: Include "quote.h".
6299         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
6300         quote function.  Reported by Göran Uddeborg.
6301
6302 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
6303
6304         * dirname.c (dir_name): Compute append_dot using path, not newpath
6305         which is not yet declared.
6306
6307 2001-05-11  Paul Eggert  <eggert@twinsun.com>
6308
6309         * Makefile.am (libfetish_a_SOURCES):
6310         Add strftime.c, since we now compile it on all hosts.
6311
6312         * strftime.c (my_strftime):
6313         Define to nstrftime if emacs, but only if my_strftime is not defined.
6314         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
6315         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
6316         Add one more extra argument: a nanoseconds value.
6317         All uses changed.
6318         (ns): New macro.
6319         (my_strftime function): Add %N format.
6320         (emacs_strftimeu): Renamed from emacs_strftime,
6321         with extra ut argument.
6322
6323 2001-05-11  Paul Eggert  <eggert@twinsun.com>
6324
6325         dirname code cleanup.  base_name now behaves more compatibly
6326         with POSIX basename when given file names that have trailing
6327         slashes, and similarly for dir_name.  Add new primitives
6328         base_len and dir_len.  Put the directory-name-related decls
6329         into dirname.h.
6330
6331         * addext.c (ISSLASH, base_name): Remove; now in dirname.h.
6332         * backupfile.c (base_name): Likewise.
6333         * basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
6334         * dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
6335         * makepath.c (strip_trailing_slashes): Likewise.
6336         * path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN, ISSLASH):
6337         Likewise.
6338         * rename.c (strip_trailing_slashes): Likewise.
6339         * same.c (base_name): Likewise.
6340         * stripslash.c (ISSLASH): Likewise.
6341
6342         * addext.c: Include <dirname.h> after size_t is defined.
6343         * backupfile.c: Likewise.
6344
6345         * addext.c (addext): Use base_len to trim redundant
6346         trailing slashes instead of doing it ourselves.
6347         But do not trim the last slash if it is not redundant.
6348
6349         * backupfile.c (find_backup_file_name,
6350         max_backup_version): Use base_len instead of rolling it ourselves.
6351         Handle the case of "" and (on DOS) "C:" correctly.
6352
6353         * basename.c: Do not include <stdio.h>, <assert.h>; no longer needed.
6354         Include <string.h>, <dirname.h>.
6355         (base_name): Allow file names ending in slashes, other than names
6356         that are all slashes.  In this case, return the basename followed
6357         by the slashes.  This is more general, and can be used in places
6358         where the original base_name purposely had an assertion failure.
6359         (base_len): New function.
6360
6361         * dirname.c: Include <string.h> instead of <stdlib.h>.
6362         Do not include <assert.h>; no longer needed.
6363         Include xalloc.h.
6364         (memrchr): Remove decl.
6365         (dir_name_r): Remove.
6366         (dir_len): Renamed from dirlen.  All callers changed.
6367         Rewrite in terms of base_name, for simplicity and consistency.
6368         (dir_name): Never return NULL.  All callers changed.
6369         Do not include <stdlib.h> in test program; no longer needed.
6370         return 0; is fine for test program.
6371
6372         * dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
6373         New macros.
6374         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
6375
6376         * path-concat.c (path_concat): Use base_len to compute
6377         base length, not strlen; this means we cannot rely on memcpy
6378         to null-terminate.
6379
6380         * same.c (STREQ): Remove.
6381         (same_name): Handle the case where the basename ends in trailing '/'.
6382
6383         * stripslash.c (strip_trailing_slashes): Return nonzero if
6384         a slash was stripped.  Do not strip the last slash after a
6385         file system prefix.
6386
6387 2001-04-08  Jim Meyering  <meyering@lucent.com>
6388
6389         * getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
6390         recomputed; that's necessary when the offset spans a DST transition.
6391         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
6392
6393 2001-04-02  Jim Meyering  <meyering@lucent.com>
6394
6395         * regex.h, regex.c: Update from GNU libc.
6396
6397 2001-03-19  Paul Eggert  <eggert@twinsun.com>
6398
6399         * version-etc.c (version_etc_copyright): Update to 2001.
6400
6401 2001-03-16  Paul Eggert  <eggert@twinsun.com>
6402
6403         * tempname.c (uint64_t): Define to uintmax_t if
6404         not defined, and if UINT64_MAX is not defined.
6405         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
6406         Reported by John David Anglin.
6407
6408 2001-03-10  Bruno Haible  <haible@clisp.cons.org>
6409
6410         * localcharset.c (locale_charset): Allow wildcard syntax. Also resolve
6411         alias if codeset is empty.
6412         * config.charset (BeOS): Use wildcard syntax.
6413
6414 2001-03-13  Jim Meyering  <meyering@lucent.com>
6415
6416         * path-concat.c (path_concat) [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]:
6417         Don't insert a backslash when concatenating e.g., `C:' and `foo'.
6418         From Bruno Haible.
6419
6420 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
6421
6422         * localcharset.c (locale_charset): Don't use setlocale(LC_CTYPE,NULL).
6423         Don't return NULL.
6424         * unicodeio.c (print_unicode_char): Simplify accordingly.
6425
6426 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
6427
6428         * config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
6429         support for DOS/DJGPP.
6430
6431 2001-02-28  Paul Eggert  <eggert@twinsun.com>
6432
6433         * Makefile.am (libfetish_a_SOURCES):
6434         Add dup-safer.c, fopen-safer.c.
6435         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
6436
6437         * dup-safer.c, fopen-safer.c, stdio-safer.h, unistd-safer.h: New files.
6438
6439 2001-02-25  Paul Eggert  <eggert@twinsun.com>
6440
6441         The mkstemp replacement is taken from glibc 2.2.2, with some
6442         portability fixes for use outside glibc, as follows:
6443
6444         * tempname.c (struct_stat64): New macro.
6445         (direxists, __gen_tempname): Use it.
6446         This avoids a portability problem with Solaris 8.
6447
6448         * tempname.c (<config.h>): Include if HAVE_CONFIG_H.
6449         (<stddef.h>, <stdint.h>, <string.h>):
6450         Include only if STDC_HEADERS || _LIBC.
6451         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
6452         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
6453         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
6454         (__set_errno): Define this macro if <errno.h> doesn't.
6455         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
6456         Define these macros if <stdio.h> doesn't.
6457         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
6458         Define these macros if <sys/stat.h>
6459         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
6460         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
6461         __xstat64): Define if not _LIBC.
6462         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
6463         (__gen_tempname): Invoke gettimeofday only if
6464         HAVE_GETTIMEOFDAY || _LIBC;
6465         otherwise, fall back on plain "time".
6466         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
6467
6468         * mkstemp.c (__GT_FILE): Define to zero if not defined.
6469
6470         * mkstemp.c, tempname.c: New files, taken from glibc 2.2.2.
6471
6472 2001-02-17  Jim Meyering  <meyering@lucent.com>
6473
6474         * strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
6475         around included file name.
6476
6477         * strnlen.c (__strnlen): Merge in a change from GNU libc.
6478
6479         * strftime.c: Update from GNU libc (the only changes were to comments).
6480
6481 2001-02-13  Bruno Haible  <haible@clisp.cons.org>
6482
6483         * mbswidth.h (mbswidth): Also define as macro, to avoid prototype clash.
6484
6485 2001-02-17  Paul Eggert  <eggert@twinsun.com>
6486
6487         * mbswidth.c, quotearg.c (mbrtowc, mbsinit):
6488         Remove workaround macros for hosts that have mbrtowc but not
6489         mbstate_t, as we now insist on proper declarations for both
6490         before using mbrtowc.
6491
6492 2001-02-17  Jim Meyering  <meyering@lucent.com>
6493
6494         * regex.c: Update from libc.
6495
6496 2001-02-16  Paul Eggert  <eggert@twinsun.com>
6497
6498         * alloca.c (malloc): Undef before defining, since stdlib.h
6499         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
6500         Reported by Mark Hounschell via Paul Eggert.
6501
6502 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
6503
6504         * config.charset: Update for FreeBSD 4.2.
6505
6506 2001-01-26  Jim Meyering  <meyering@lucent.com>
6507
6508         * quotearg.c: Include stddef.h.
6509         * quote.c: Include stddef.h.
6510         Reported by Axel Kittenberger.
6511
6512         * xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
6513         line in double quotes so that it evokes a better diagnostic.
6514         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
6515         Reported by Axel Kittenberger.
6516
6517 2001-01-15  Bruno Haible  <haible@clisp.cons.org>
6518
6519         * unicodeio.c (print_unicode_char): Cast the second iconv() arg,
6520         to avoid a warning.  Add back 'const' to inptr.
6521
6522 2001-01-16  Jim Meyering  <meyering@lucent.com>
6523
6524         * basename.c: Include <stdio.h>, needed by assert on SunOS 4.
6525         From Bruno Haible.
6526
6527 2001-01-14  Jim Meyering  <meyering@lucent.com>
6528
6529         * rename.c: New file.  From Volker Borchert.
6530         Include stdlib.h, string.h or strings.h, and xalloc.h.
6531         Use strip_trailing_slashes rather than open-coding it.
6532
6533 2001-01-03  Paul Eggert  <eggert@twinsun.com>
6534
6535         * strftime.c: Sync with glibc time/strftime.c 1.81.
6536
6537 2001-01-03  Jim Meyering  <meyering@lucent.com>
6538
6539         * unicodeio.c (print_unicode_char): Remove `const' from declaration of
6540         local `inptr' to avoid warning with some system declarations of iconv.
6541
6542 2000-12-29  Paul Eggert  <eggert@twinsun.com>
6543
6544         * modechange.c: Do not assume that mode_t uses the
6545         traditional octal encoding.  E.g. "chmod 1 FOO" should set
6546         the other-execute bit of FOO even if S_IXOTH != 1.
6547
6548         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
6549         WOTH, XOTH, ALLM): New macros.
6550         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
6551          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
6552         Use them.
6553         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
6554         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
6555         (mode_compile):
6556         No need to use uintmax_t; unsigned long is long enough.
6557         Don't bother to get suffix since we don't use it.
6558
6559 2000-12-24  Jim Meyering  <meyering@lucent.com>
6560
6561         * hash.c (is_prime): Return explicit boolean values.
6562         (hash_get_first): Return NULL to appease Irix5.6's 89.
6563         Reported by Nelson Beebe.
6564
6565 2000-10-31  Bruno Haible  <haible@clisp.cons.org>
6566
6567         * localcharset.c (locale_charset): Add support for Win32.
6568
6569 2000-12-18  Paul Eggert  <eggert@twinsun.com>
6570
6571         * physmem.h, physmem.c: New files.
6572
6573         * Makefile.am (libfetish_a_SOURCES): Add physmem.c.
6574         (noinst_HEADERS): Add physmem.h.
6575
6576         * xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
6577         't' for compatibility with Solaris 8 sort.
6578
6579 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
6580
6581         * config.charset: Add support for BeOS.
6582
6583 2000-12-16  Jim Meyering  <meyering@lucent.com>
6584
6585         * getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
6586         SHELLS_FILE to a file name that's useful on djgpp systems.
6587         Include stdlib.h.
6588         (ADDITIONAL_DEFAULT_SHELLS): Define.
6589         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
6590         Based mostly on a patch from Prashant TR.
6591
6592 2000-12-16  Jim Meyering  <meyering@lucent.com>
6593
6594         This bug had a serious impact on chown: `chown N:M FILE' (for integer
6595         N and M) would have treated it like `chown N:N FILE'.
6596
6597         * userspec.c (parse_user_spec): Fix typo: s/u/g/.
6598
6599 2000-10-31  Bruno Haible  <haible@clisp.cons.org>
6600
6601         * config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB, VISCII,
6602         CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256, CP1257
6603         to the list of canonical encodings. Rename EUC-CN to GB2312.
6604
6605 2000-12-08  Andreas Schwab  <schwab@suse.de>
6606
6607         * mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
6608         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
6609
6610 2000-12-07  Jim Meyering  <meyering@lucent.com>
6611
6612         * stripslash.c (ISSLASH): Define.
6613         (strip_trailing_slashes): Use ISSLASH rather than comparing against `/'.
6614         From Prashant TR.
6615
6616         * dirname.c (FILESYSTEM_PREFIX_LEN): Define.
6617         (dir_name_r): Declare this function as static.
6618         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
6619         manifest itself on a name containing a mix of slashes and
6620         backslashes.
6621         Make this function work with names starting with a DOS-style
6622         drive letter and colon prefix.
6623         (dir_name): Append `.' if necessary.
6624         Based mostly on patches from Prashant TR and Eli Zaretskii.
6625
6626         * dirname.h (dir_name_r): Remove prototype.
6627
6628 2000-12-05  Jim Meyering  <meyering@lucent.com>
6629
6630         * dirname.c (dir_name_r): Add `const' in a few local declarations.
6631
6632 2000-12-04  Jim Meyering  <meyering@lucent.com>
6633
6634         * path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
6635         Also include memory.h, stdlib.h, unistd.h if appropriate.
6636         Reported by Andreas Jaeger (conflicting declaration of malloc).
6637
6638 2000-12-02  Jim Meyering  <meyering@lucent.com>
6639
6640         * closeout.h: Make idempotent, to avoid some obscure warnings.
6641
6642 2000-12-01  Paul Eggert  <eggert@twinsun.com>
6643
6644         * memrchr.c: Include <config.h> before any system include file.
6645
6646 2000-11-29  Paul Eggert  <eggert@twinsun.com>
6647
6648         * dirname.c (dir_name_r): Fix typo: int -> size_t.
6649
6650 2000-11-26  Jim Meyering  <meyering@lucent.com>
6651
6652         * memcoll.c: Include sys/types.h.  From Werner Almesberger.
6653
6654 2000-11-22  Paul Eggert  <eggert@twinsun.com>
6655
6656         * strftime.c (my_strftime): Do not invoke mbrlen with a
6657         size of (size_t) -1; it's not portable.
6658
6659 2000-11-17  Akim Demaille  <akim@epita.fr>
6660
6661         * obstack.h: Formatting changes.
6662         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
6663         prevent type checking.
6664         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
6665         cast the value to (void *): assigning a `foo *' to a `void *'
6666         variable is valid.
6667         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
6668
6669 2000-11-17  Jim Meyering  <meyering@lucent.com>
6670
6671         * strstr.c: Update from GNU libc.
6672
6673 2000-11-16  Jim Meyering  <meyering@lucent.com>
6674
6675         * strverscmp.c: Incorporate weak-alias-related changes from glibc.
6676
6677 2000-11-11  Jim Meyering  <meyering@lucent.com>
6678
6679         * error.c: Add a couple #includes, merging from GNU libc version.
6680
6681 2000-11-10  Jim Meyering  <meyering@lucent.com>
6682
6683         * obstack.h: Update from GNU libc.
6684         * obstack.c: Likewise.
6685
6686 2000-11-06  Paul Eggert  <eggert@twinsun.com>
6687
6688         * getusershell.c (setusershell): Use rewind rather than
6689         fseek/fseeko, to avoid configuration hassles with fseeko.
6690         Don't bother opening SHELLS_FILE if shellstream is NULL;
6691         it's not necessary.
6692
6693 2000-11-05  Jim Meyering  <meyering@lucent.com>
6694
6695         * makepath.h (make_dir): Declare.
6696         * makepath.c (make_dir): Remove `static' attribute.
6697         Tweak a comment.
6698
6699 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
6700
6701         * hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
6702         last one in a bucket, advance to the next bucket.
6703
6704 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
6705
6706         * fnmatch.c: Do not comment out all the code if we are using
6707         the GNU C library, because in some cases we are replacing buggy
6708         code in the GNU C library itself.
6709
6710 2000-10-30  Paul Eggert  <eggert@twinsun.com>
6711
6712         * error.h, getline.h, modechange.h:
6713         Remove "2000" from Copyright line, as the file hasn't been
6714         changed this year other than in the copyright notice.
6715
6716         * xalloc.h: Add "2000" to Copyright line, as this file
6717         was changed this year.
6718
6719 2000-10-30  Paul Eggert  <eggert@twinsun.com>
6720
6721         * fnmatch.c (FOLD): Do not assume that characters are unsigned.
6722         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
6723         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
6724
6725 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
6726
6727         * regex.h (__restrict_arr): Move definition out of #ifndef block.
6728         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
6729         doesn't define __restrict_arr.
6730
6731 2000-10-29  Jim Meyering  <meyering@lucent.com>
6732
6733         * xstat.in: Fix grammar in comment.
6734
6735 2000-10-28  Jim Meyering  <meyering@lucent.com>
6736
6737         * memchr.c: Update from libc.
6738         Adjust for portability:
6739         [HAVE_STDLIB_H]: Include stdlib.h.
6740         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
6741         Undef __memchr, too.
6742         [!weak_alias]: Define __memchr to memchr.
6743
6744         * regex.c: Update from libc.
6745         * regex.h: Likewise.
6746         * getopt1.c: Likewise.
6747         * memcmp.c: Likewise.
6748
6749         * getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
6750         Avoid using fseek, when possible -- it's broken by design.
6751         Patch by Ulrich Drepper.
6752
6753 2000-10-26  Jim Meyering  <meyering@lucent.com>
6754
6755         * strftime.c: Update from libc.
6756
6757 2000-10-25  Jim Meyering  <meyering@lucent.com>
6758
6759         * obstack.c: Update from libc.
6760
6761 2000-10-23  Jim Meyering  <meyering@lucent.com>
6762
6763         * hard-locale.c (hard_locale): Revert last change -- it was simply
6764         wrong.  That set_locale call must not have any side effects.
6765         From Paul Eggert.
6766
6767 2000-10-22  Jim Meyering  <meyering@lucent.com>
6768
6769         * md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
6770         [CYCLIC]: Remove now-unused definition.
6771
6772         * save-cwd.c (O_DIRECTORY): Define, if needed.
6773         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
6774         Suggestion from Ulrich Drepper.
6775
6776 2000-10-21  Jim Meyering  <meyering@lucent.com>
6777
6778         * dirname.c (dir_name_r): New function, factored out of dir_name.
6779         (dir_name): Use dir_name_r.
6780         * dirname.h (dir_name_r): Declare it.
6781
6782 2000-10-21  Jim Meyering  <meyering@lucent.com>
6783
6784         * dirname.c (memrchr): Declare if necessary.
6785         (dir_name): Remove the restriction that there be no
6786         trailing slashes.  Now, this code skips past them, effectively
6787         ignoring them.
6788         [TEST_DIRNAME] (main): New unit tests.
6789
6790         * memrchr.c: New file from GNU libc.
6791         Undef __memrchr, too.
6792         [!weak_alias]: Define __memrchr to memrchr.
6793         Guard weak_alias use with `#ifdef weak_alias'.
6794
6795 2000-10-17  Jim Meyering  <meyering@lucent.com>
6796
6797         * quote.h (PARAMS): Define and use.
6798         Reported by Akim Demaille.
6799
6800         * getopt.c: Update from libc.
6801
6802 2000-10-16  Jim Meyering  <meyering@lucent.com>
6803
6804         * hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to setlocale.
6805         From Jan Fedak.
6806
6807 2000-09-25  Jim Meyering  <meyering@lucent.com>
6808
6809         * md5.h (rol): Define (from GnuPG).
6810
6811         * sha.c: Give credit (GnuPG) where due.
6812         (M): Use rol rather than open-coding it.
6813         Add a FIXME comment.
6814
6815 2000-09-21  Jim Meyering  <meyering@lucent.com>
6816
6817         * userspec.c (parse_user_spec): Remove debugging printf I'd added.
6818         Reported by Michael Stone.
6819
6820 2000-09-20  Jim Meyering  <meyering@lucent.com>
6821
6822         * Makefile.am (libfetish_a_SOURCES): Add sha.c.
6823         (noinst_HEADERS): Add sha.h.
6824         Based on code from Scott G. Miller and from GnuPG.
6825
6826 2000-09-15  Jim Meyering  <meyering@lucent.com>
6827
6828         * regex.c: Update from libc.
6829
6830 2000-09-10  Jim Meyering  <meyering@lucent.com>
6831
6832         * getopt.c (_getopt_internal): Update from glibc.
6833
6834 2000-09-09  Jim Meyering  <meyering@lucent.com>
6835
6836         * quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
6837         think it should be used as a general replacement for isascii.
6838         * fnmatch.c: Likewise.
6839         * mbswidth.c: Likewise
6840         * regex.c: Likewise.
6841
6842         Don't use atoi.
6843         * userspec.c: Include sys/param.h and limits.h.
6844         Include xstrtol.h.
6845         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
6846         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
6847         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
6848         UID, GID.  Check range.
6849
6850 2000-09-06  Jim Meyering  <meyering@lucent.com>
6851
6852         * getopt.c (_getopt_internal): Update from glibc.
6853
6854 2000-08-30  Jim Meyering  <meyering@lucent.com>
6855
6856         * strftime.c: Merge in changes from GNU libc.
6857
6858 2000-08-26  Jim Meyering  <meyering@lucent.com>
6859
6860         * closeout.c: Include "__fpending.h".
6861         (close_stdout_status): Return right away if there's nothing to flush.
6862
6863         * Makefile.am (noinst_HEADERS): Add __fpending.h.
6864         * __fpending.c: New file.
6865         * __fpending.h: New file.
6866
6867 2000-08-07  Paul Eggert  <eggert@twinsun.com>
6868
6869         Standardize on "memory exhausted" instead of "Memory exhausted"
6870         or "virtual memory exhausted".
6871         * obstack.c (print_and_abort): Use "memory exhausted", not
6872         "virtual memory exhausted".
6873         * same.c (same_name): Invoke xalloc_die instead of printing
6874         our own message.
6875         * userspec.c (parse_user_spec): Likewise.
6876         * bumpalloc.h: comment fix
6877         * same.c, userspec.c: Include xalloc.h.
6878
6879         * xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
6880         not char *const and pointing to a constant array.
6881         * xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
6882         (xrealloc): Comment fix.
6883
6884         * userspec.c (parse_user_spec):
6885         Don't translate a message until just before returning,
6886         to avoid unnecessary translation.
6887
6888 2000-08-07  Jim Meyering  <meyering@lucent.com>
6889
6890         * addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
6891         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
6892         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
6893         getgroups.c, gethostname.c, getopt.h, group-member.c,
6894         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
6895         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
6896         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
6897         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
6898         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
6899         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
6900         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
6901         yesno.c: Back out Copyright date changes for each file with no change
6902         this year.  This eases coordination with other programs using the same
6903         source code modules.  From Paul Eggert.
6904
6905 2000-08-03  Greg McGary  <greg@mcgary.org>
6906
6907         * regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
6908         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
6909         (EXTEND_BUFFER): Use them.
6910
6911 2000-08-01  Jim Meyering  <meyering@lucent.com>
6912
6913         * dirname.c (ISSLASH): Define.
6914         (BACKSLASH_IS_PATH_SEPARATOR): Define.
6915         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
6916         both `\' and `/' may be use as path separators.
6917         Based on a patch from Prashant TR.
6918
6919 2000-07-31  Paul Eggert  <eggert@twinsun.com>
6920
6921         * quotearg.c (quotearg_n_options): Don't make the initial
6922         slot vector a constant, since it might get modified.
6923
6924 2000-07-31  Jim Meyering  <meyering@lucent.com>
6925
6926         * xmalloc.c: Use `virtual memory exhausted', not `Memory exhausted'.
6927         * obstack.c (print_and_abort): Likewise.
6928
6929 2000-07-30  Paul Eggert  <eggert@twinsun.com>
6930
6931         * quotearg.c (quotearg_n_options): Preallocate a slot 0
6932         buffer, so that the caller can always quote one small
6933         component of a "memory exhausted" message in slot 0.
6934         From a suggestion by Jim Meyering.
6935
6936 2000-07-30  Jim Meyering  <meyering@lucent.com>
6937
6938         * makepath.c (make_path): Quote the other instance, too.
6939
6940         * quotearg.c (N_STATIC_SLOTVECS): Define.
6941         (STATIC_BUF_SIZE): Define.
6942         (quotearg_n_options): Use only statically allocated storage when
6943         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
6944         than STATIC_BUF_SIZE.
6945
6946 2000-07-29  Jim Meyering  <meyering@lucent.com>
6947
6948         * diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
6949         * dirname.c (dir_name): Likewise.
6950
6951         * basename.c (base_name): Use ISSLASH rather than comparing against `/'.
6952
6953         * dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
6954         (dir_name): Assert that there are no trailing slashes.
6955
6956 2000-07-18  Bruno Haible  <haible@clisp.cons.org>
6957
6958         * mbswidth.h (mbswidth): Add a flags argument.
6959         (mbswidth): New declaration.
6960         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
6961         * mbswidth.c (mbswidth): Add a flags argument.
6962         (mbsnwidth): New function.
6963
6964 2000-07-24  Jim Meyering  <meyering@lucent.com>
6965
6966         * mbswidth.c: Remove useless #else.  From Bruno Haible.
6967
6968 2000-07-23  Paul Eggert  <eggert@twinsun.com>
6969
6970         * mbswidth.c (_XOPEN_SOURCE):
6971         Don't define; this causes problems on Solaris 7.
6972         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
6973
6974 2000-07-23  Paul Eggert  <eggert@twinsun.com>
6975
6976         * quotearg.c:
6977         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
6978         so that mbstate_t is always defined.
6979
6980         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
6981         be 1 in at least one GCC installation, and this configuration
6982         error is likely to be common.  Ignoring MB_LEN_MAX hurts
6983         performance on hosts that have mbrtowc but have only unibyte
6984         locales, but I assume these hosts are rare.
6985
6986 2000-07-23  Paul Eggert  <eggert@twinsun.com>
6987
6988         * quotearg.c: Streamline by invoking multibyte code only if needed.
6989         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
6990         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
6991         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
6992         invoke multibyte primitives.
6993
6994 2000-07-23  Jim Meyering  <meyering@lucent.com>
6995
6996         * basename.c (base_name): Add an assertion.
6997
6998 2000-07-15  Bruno Haible  <clisp.cons.org>
6999
7000         * quotearg.c: When the system forces us to redefine mbstate_t,
7001         shadow its mbsinit function.
7002
7003 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
7004
7005         * mbswidth.h: New file.
7006         * mbswidth.c: New file.
7007         * Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
7008         (noinst_HEADERS): Add mbswidth.h.
7009
7010 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
7011
7012         * config.charset: Add support for FreeBSD. Improve support for HP-UX
7013         and IRIX 6.
7014
7015 2000-07-15  Jim Meyering  <meyering@lucent.com>
7016
7017         * makepath.c: Include quote.h.
7018         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
7019         corresponding argument in a `quote (...)' call.
7020         Give better diagnostics.
7021
7022         * Makefile.am (libfetish_a_SOURCES): Add quote.c.
7023         (noinst_HEADERS): Add quote.h.
7024
7025         * quote.c (quote, quote_n): New file.  Two functions taken verbatim
7026         from tar's src/misc.c.
7027         * quote.h: New file.  Prototypes for same.
7028
7029 2000-07-10  Paul Eggert  <eggert@twinsun.com>
7030
7031         From a suggestion by Bruno Haible.
7032         * quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
7033         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
7034         to decide whether to define the BeOS workaround macro;
7035         this adjusts to the change to AC_MBSTATE_T.
7036
7037 2000-07-13  Paul Eggert  <eggert@twinsun.com>
7038
7039         * quotearg.h (enum quoting style): New enum clocale_quoting_style.
7040
7041         * quotearg.c (quoting_style_args, quoting_style_vals,
7042         quotearg_buffer_restyled): Add support for
7043         clocale_quoting_style.  Undo previous change to
7044         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
7045         and "{RIGHT QUOTATION MARK}" msgids.
7046
7047 2000-07-05  Paul Eggert  <eggert@twinsun.com>
7048
7049         The old behavior of quoting `like this' doesn't look good with
7050         newer, ISO-style fonts.  See:
7051         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
7052
7053         Instead, quote "like this" by default.  Let the translator
7054         tailor the locale-specific quoting behavior by providing
7055         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
7056
7057         * quotearg.c (N_): New macro.
7058         (gettext_default): New function.
7059         (quotearg_buffer_restyled): Use
7060         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
7061         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
7062
7063 2000-07-09  Jim Meyering  <meyering@lucent.com>
7064
7065         * Most files: Update copyright dates to include 2000.
7066
7067 2000-07-08  Jim Meyering  <meyering@lucent.com>
7068
7069         * xgethostname.c (ENAMETOOLONG): Define to an unlikely value
7070         if not defined.
7071         (xgethostname): Remove now-unnecessary #ifdef.
7072         Move declaration of `err' into loop where it's used.
7073
7074 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
7075
7076         * xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
7077         by allocating a larger buffer. Test the gethostname return value for
7078         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
7079         returns an error and ENAMETOOLONG isn't defined.
7080
7081 2000-07-05  Paul Eggert  <eggert@twinsun.com>
7082         and Bruno Haible  <haible@clisp.cons.org>
7083
7084         * quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
7085
7086 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
7087
7088         * quotearg.c (struct quoting_options): Simplify quote_these_too
7089         dimension.
7090
7091 2000-07-03  Jim Meyering  <meyering@lucent.com>
7092
7093         * strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
7094         Reported by Bruno Haible.
7095
7096 2000-07-04  Jim Meyering  <meyering@lucent.com>
7097
7098         * quotearg.c: Make inclusion of <wchar.h> independent of whether
7099         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
7100         lacks mbrtowc.
7101
7102 2000-07-03  Paul Eggert  <eggert@twinsun.com>
7103         and Bruno Haible  <haible@clisp.cons.org>
7104
7105         * quotearg.c (mbrtowc):
7106         Assign to *pwc, and return 1 only if result is nonzero.
7107         (iswprint): Use ISPRINT when substituting our own mbrtowc.
7108
7109 2000-07-03  Jim Meyering  <meyering@lucent.com>
7110
7111         * readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
7112         This is necessary to get a definition of e.g., UTMP_FILE on HP-UX 10.20.
7113         From Bob Proulx.
7114
7115 2000-07-02  Jim Meyering  <meyering@lucent.com>
7116
7117         * quotearg.c (mbstate_t): Don't define here.
7118
7119 2000-07-02  Jim Meyering  <meyering@lucent.com>
7120
7121         * nanosleep.c (SIGCONT): Define if not already defined.
7122
7123 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
7124
7125         * mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
7126         per change in ../m4/ls-mntd-fs.m4.
7127         (read_filesystem_list): Ignore symbolic links.
7128
7129 2000-06-29  Jim Meyering  <meyering@lucent.com>
7130
7131         * same.c: Include <string.h> or <strings.h>, as appropriate,
7132         for declaration of strcmp.
7133
7134         * long-options.c: Include <stdlib.h>, for declaration of exit.
7135
7136         * mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
7137         Avoid warning by casting result to `char *' to remove `const'.
7138
7139 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
7140
7141         * Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
7142
7143 2000-06-26  Paul Eggert  <eggert@twinsun.com>
7144
7145         savedir now sets errno on failure and invokes xmalloc to get memory.
7146         Fix a couple of other minor bugs while we're at it.
7147
7148         * savedir.c (<unistd.h>): Do not include; there's no need.
7149         (NAMLEN): Remove macro.
7150         (malloc, realloc): Remove decls.
7151         (stpcpy): Likewise.
7152         ("xalloc.h"): Include.
7153         (NAME_SIZE_DEFAULT): New macro.
7154         (savedir): Use xmalloc / xrealloc to allocate memory.
7155         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
7156         Skip "" directory entries.
7157         Use strlen to calculate directory entry length, since the old method
7158         is rarely used these days and isn't worth supporting.
7159         Don't use a pointer after freeing it.
7160         Check for integer overflow when calculating allocation size.
7161         Use memcpy to copy entries, instead of stpcpy.
7162         Set errno properly when returning NULL.
7163         Check for readdir error.
7164
7165 2000-06-26  Jim Meyering  <meyering@lucent.com>
7166
7167         * posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
7168
7169 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
7170
7171         * getusershell.c (xmalloc, xrealloc): Remove functions.
7172         Include xalloc.h.
7173         Don't include <stdlib.h>.  Don't declare malloc, realloc.
7174
7175 2000-06-23  Bruno Haible  <haible@clisp.cons.org>
7176
7177         * unicodeio.c (print_unicode_char): Work around ansi2knr deficiency.
7178
7179 2000-06-24  Jim Meyering  <meyering@lucent.com>
7180
7181         * error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
7182
7183 2000-06-21  Jim Meyering  <meyering@lucent.com>
7184
7185         * getpass.c: New file, from Bruno Haible.  Required for BeOS.
7186
7187 2000-06-19  Paul Eggert  <eggert@twinsun.com>
7188
7189         * quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
7190         (mbrtowc, mbstate_t): Define substitutes if
7191         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
7192         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
7193         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
7194
7195 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
7196
7197         * xgetcwd.c (xgetcwd): If the required pathname length is smaller
7198         than 1024, return a memory chunk of least possible size, instead
7199         of size PATH_MAX + 2. In the loop, increment the size proportionally.
7200         Use free/xmalloc instead of xrealloc to avoid copying for very long
7201         paths.
7202
7203 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
7204
7205         * canon-host.c (canon_host): Use malloc and memcpy to copy an
7206         address, not strdup.  Include <stdlib.h> and don't declare free().
7207
7208 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
7209
7210         * path-concat.c (path_concat): Don't access dir[-1] if dir is
7211         the empty string.
7212
7213 2000-06-21  Jim Meyering  <meyering@lucent.com>
7214
7215         * Makefile.am (libfetish_a_SOURCES): Add getstr.c.
7216         (noinst_HEADERS): Add getstr.h.
7217
7218         * getline.c (getstr): Move into a separate file.
7219         * getstr.c (getstr): New file, extracted from getline.c, with
7220         the following changes: new parameter, delim2; both delim[12]
7221         parameters have type `int', not `char'.  The latter would lose
7222         with 8-bit delimiters.
7223         * getstr.h: New file.
7224
7225 2000-06-19  Jim Meyering  <meyering@lucent.com>
7226
7227         * getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
7228
7229 2000-06-18  Jim Meyering  <meyering@lucent.com>
7230
7231         * mkdir.c: Remove file, due mainly to copyright incompatibility.
7232         Besides, these days every porting target provides a mkdir function.
7233
7234         * strnlen.c: Include memory.h, string.h, and/or strings.h as needed.
7235         (this snippet comes from src/system.h).
7236
7237 2000-06-15  Paul Eggert  <eggert@twinsun.com>
7238
7239         * human.c (adjust_value): New function.
7240         (human_readable_inexact): Apply rounding style even when
7241         printing approximate values.
7242
7243 2000-06-14  Paul Eggert  <eggert@twinsun.com>
7244
7245         * human.c (human_readable_inexact): Allow an input block
7246         size that is not a multiple of the output block size, and vice versa.
7247         Reported by Piergiorgio Sartor.
7248
7249 2000-06-14  Paul Eggert  <eggert@twinsun.com>
7250
7251         * getdate.y (get_date): Apply relative times after time
7252         zone indicator, not before.  Reported by Todd A. Jacobs.
7253
7254 2000-06-13  Jim Meyering  <meyering@lucent.com>
7255
7256         * Makefile.am (all-local): Depend on lstat.c and stat.c.
7257
7258         * xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
7259
7260 2000-06-12  Paul Eggert  <eggert@twinsun.com>
7261
7262         * xstat.in: Include <stdlib.h> in lstat, to declare "free".
7263
7264 2000-06-04  Paul Eggert  <eggert@twinsun.com>
7265
7266         * strnlen.c: Include <config.h> if HAVE_CONFIG_H.
7267
7268 2000-06-04  Jim Meyering  <meyering@lucent.com>
7269
7270         * getugroups.c (getugroups): Cast -1 to gid_t, for systems like
7271         SunOS 4.1.4 for which gid_t is an unsigned type.
7272
7273 2000-06-03  Jim Meyering  <meyering@lucent.com>
7274
7275         * strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
7276
7277 2000-05-26  Bruno Haible  <haible@clisp.cons.org>
7278
7279         * Makefile.am (install-exec-local): On systems with glibc-2.1 or
7280         newer, don't install charset.alias.
7281         * config.charset: Change the Linux/glibc rules so they become empty
7282         on glibc-2.1 or newer.
7283
7284 2000-06-02  Jim Meyering  <meyering@lucent.com>
7285
7286         * mountlist.c: Back out last change.  Instead, do this...
7287         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the me_dummy
7288         member using the same `ignore'-testing code.
7289         * mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
7290         fs_type strings.
7291         From Mark D. Roth.
7292
7293 2000-05-29  Jim Meyering  <meyering@lucent.com>
7294
7295         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore mounts
7296         with the `ignore' attribute.  Based on a patch from Mark D. Roth.
7297
7298 2000-05-22  Jim Meyering  <meyering@lucent.com>
7299
7300         * makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
7301
7302 2000-05-18  Jim Meyering  <meyering@lucent.com>
7303
7304         * hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
7305         back, too, since it may have been modified by allocate_entry.
7306         (hash_delete): Rewrite to use neither the assignment operator
7307         nor the comma operator in an if-expression.
7308
7309 2000-05-15  Paul Eggert  <eggert@twinsun.com>
7310
7311         * closeout.c:
7312         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
7313         Remove; no longer needed.
7314         "quotearg.h": Add include.
7315         (file_name): Do not bother to explicitly initialize to NULL; it's less
7316         efficient on some hosts.
7317         (close_stdout_status): Remove test as to whether stdout was already
7318         closed; it breaks for the case "echo x | sort >&-".
7319         Quote file name colons.
7320         Do not assume that _("write error") lacks format strings.
7321
7322 2000-05-15  Jim Meyering  <meyering@lucent.com>
7323
7324         * version-etc.c (version_etc_copyright): Update the copyright string
7325         used in all --version output.
7326
7327 2000-05-14  Jim Meyering  <meyering@lucent.com>
7328
7329         * closeout.c (close_stdout_set_file_name): New function.
7330         (close_stdout_status): Use new file-scoped global.
7331         Return right away if fstat says the stdout file descriptor is invalid.
7332         * closeout.h (close_stdout_set_file_name): Declare.
7333
7334 2000-05-10  Jim Meyering  <meyering@lucent.com>
7335
7336         * closeout.c [default_exit_status]: New file-scoped variable.
7337         (close_stdout_set_status): New function.
7338         * closeout.h (close_stdout_set_status): Declare.
7339
7340 2000-05-08  Jim Meyering  <meyering@lucent.com>
7341
7342         * long-options.c: Don't include closeout.h.
7343         (parse_long_options): Don't call close_stdout for --version.
7344
7345 2000-05-06  Jim Meyering  <meyering@lucent.com>
7346
7347         * strnlen.c: Undefine __strnlen and strnlen.
7348         [!weak_alias]: Define __strnlen to strnlen.
7349
7350         * atexit.c: New file, from libiberty.
7351
7352 2000-05-06  Jim Meyering  <meyering@lucent.com>
7353
7354         * closeout.c (close_stdout_status): Also check for errors on the
7355         stderr stream.
7356
7357 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
7358
7359         * localcharset.c (get_charset_aliases): Use malloc, realloc and memcpy
7360         instead of xmalloc, xrealloc, path_concat.
7361         (locale_charset): Treat empty environment variables as absent.
7362         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
7363
7364 2000-05-04  Jim Meyering  <meyering@lucent.com>
7365
7366         * getopt.c: Update from glibc.
7367         * obstack.c: Likewise.
7368         * obstack.h: Likewise.
7369         * regex.c: Likewise.  NB: K&R compiler support is dropped for this file
7370
7371         * regex.h: Likewise.
7372         * strndup.c: Likewise.
7373         * strnlen.c: New file, from glibc.
7374
7375 2000-05-01  Jim Meyering  <meyering@lucent.com>
7376
7377         * full-write.c (full_write): Remove `FIXME' part of comment.
7378
7379 2000-04-29  Jim Meyering  <meyering@lucent.com>
7380
7381         * path-concat.c: Declare strdup only if it's not defined.
7382         * canon-host.c: Likewise.
7383
7384 2000-04-28  Jim Meyering  <meyering@lucent.com>
7385
7386         * rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to avoid
7387         redefinition warning on some systems (HPUX).  Otherwise, regex.h is
7388         included first, then limits.h is included by locale.h by libintl.h.
7389         From John David Anglin.
7390
7391 2000-04-25  Jim Meyering  <meyering@lucent.com>
7392
7393         * makepath.c (S_IRWXUGO): Define.
7394         (make_path): Always perform explicit chmod if MODE specifies any
7395         of the `special' permission bits.  Prompted by a bug report against
7396         install from Mate Wierdl and Joost van Baal.
7397
7398 2000-04-18  Jim Meyering  <meyering@lucent.com>
7399
7400         * README: New file.
7401
7402         * getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
7403         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
7404
7405 2000-04-17  Jim Meyering  <meyering@lucent.com>
7406
7407         * strftime.c (my_strftime) [strftime]: Declare strftime here, since
7408         the definition of it to rpl_strftime also defined-away the system's
7409         declaration.
7410
7411 2000-04-15  Jim Meyering  <meyering@lucent.com>
7412
7413         Use `C' to denote so-called `contiguous' files, the same way
7414         that tar does.
7415         * filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
7416         (ftypelet): Use S_ISCTG.
7417         From Michael Deutschmann.
7418
7419 2000-04-14  Jim Meyering  <meyering@lucent.com>
7420
7421         * strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
7422
7423 2000-04-08  Jim Meyering  <meyering@lucent.com>
7424
7425         * Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
7426         names don't conflict.  Reported by Eli Zaretskii.
7427
7428 2000-03-28  Bruno Haible  <haible@clisp.cons.org>
7429
7430         * unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
7431         bug.  Deal with the different error behavior of Irix iconv.
7432
7433 2000-04-07  Jim Meyering  <meyering@lucent.com>
7434
7435         * putenv.c: Move inclusion of errno.h so it follows that of sys/types.h,
7436         to work around system header problems on AIX 3.2.5.  From Bruno Haible.
7437
7438 2000-04-05  Jim Meyering  <meyering@lucent.com>
7439
7440         Portability tweaks required for ultrix4.3.
7441         * readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare getutent.
7442         * readutmp.c: Include sys/types.h before sys/stat.h.
7443         * canon-host.c: Declare strdup.
7444         * path-concat.c: Likewise.
7445         From John David Anglin.
7446
7447 2000-04-04  Jim Meyering  <meyering@lucent.com>
7448
7449         Be more DOS 8.3-friendly.
7450         * ref-add.sin: Renamed from ref-add.sed.in.
7451         * ref-del.sin: Renamed from ref-del.sed.in.
7452         * Makefile.am: Reflect renaming.
7453         Reported by Eli Zaretskii.
7454
7455         Use a temporary file name that won't clash with `charset.alias'
7456         in the DOS 8.3 name space.
7457         * Makefile.am (charset_tmp): Define.
7458         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
7459         (uninstall-local): Likewise.
7460         Reported by Eli Zaretskii.
7461
7462 2000-03-29  Paul Eggert  <eggert@twinsun.com>
7463
7464         * time/strftime.c (my_strftime): Make sure we call the system
7465         strftime, not ourselves, when invoking the underlying strftime.
7466
7467 2000-03-24  Jim Meyering  <meyering@lucent.com>
7468
7469         * Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
7470         (charset_alias): Define.
7471         (install-exec-local): Factor out common code.
7472         (uninstall-local): Split lines longer than 80.
7473         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
7474         (SUFFIXES): Define.
7475         (.sed.in.sed): New rule.  Don't redirect directly to $@.
7476         (CLEANFILES): Add ref-add.sed and ref-del.sed.
7477
7478 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
7479
7480         * config.charset: Output a line containing "Packages using this file".
7481         * ref-add.sed.in, ref-del.sed.in: New files.
7482         * Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
7483         ref-del.sed): New rules.
7484
7485 2000-03-17  Jim Meyering  <meyering@lucent.com>
7486
7487         * unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
7488         Otherwise, include <strings.h>
7489
7490 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
7491
7492         * unicodeio.c (utf8_wctomb): New function.
7493         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
7494         format instead of in UCS-4 with platform dependent endianness.
7495
7496 2000-03-07  Paul Eggert  <eggert@twinsun.com>
7497
7498         * savedir.c (savedir): Work even if directory size is
7499         negative; this can happen with some screwy NFS configurations.
7500
7501 2000-03-06  Jim Meyering  <meyering@lucent.com>
7502
7503         * localcharset.c (get_charset_aliases): Don't try to free file_name
7504         if it's NULL (because we ran out of memory).  From Bruno Haible.
7505
7506 2000-03-05  Jim Meyering  <meyering@lucent.com>
7507
7508         * localcharset.c ("path-concat.h"): Include.
7509         (get_charset_aliases): Use path_concat instead of ANSI string
7510         concatenation.
7511
7512         * unicodeio.h (PARAMS): Define.
7513         Use it to guard prototype.
7514
7515 2000-03-04  Jim Meyering  <meyering@lucent.com>
7516
7517         * Makefile.am (install-exec-local): Create $(libdir) before installing
7518         into it.
7519         (uninstall-local): Uncomment this rule so `make distcheck' works
7520         once again.
7521
7522         * unicodeio.c (<errno.h>): Include it.
7523         (errno): Declare if not defined.
7524
7525         * localcharset.c: Add Bruno's comment justifying use of volatile.
7526
7527         * config.charset: New version, incorporating remarks from a linux
7528         i18n mailing list.  From Bruno Haible.
7529
7530 2000-03-02  Jim Meyering  <meyering@lucent.com>
7531
7532         * Makefile.am (EXTRA_DIST): Add config.charset.
7533
7534 2000-03-01  Jim Meyering  <meyering@lucent.com>
7535
7536         * localcharset.c: Guard some #includes with `#if HAVE_...'.
7537         * unicodeio.c: Likewise.
7538
7539 2000-02-02  Bruno Haible  <haible@clisp.cons.org>
7540
7541         * config.charset: New file.
7542         * localcharset.c: New file.
7543         * unicodeio.h, unicodeio.c: New files.
7544         * Makefile.am (DEFS): Add -DLIBDIR=...
7545         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
7546         (noinst_HEADERS): Add unicodeio.h.
7547         (all-local, install-exec-local, charset.alias): New targets.
7548
7549 2000-02-28  Paul Eggert  <eggert@twinsun.com>
7550
7551         * quotearg.c (ALERT_CHAR): New macro.
7552         (quotearg_buffer_restyled): Use it.
7553
7554 2000-02-27  Jim Meyering  <meyering@lucent.com>
7555
7556         * strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
7557         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
7558
7559         * backupfile.c: Guard inclusion of stdlib.h with `#if HAVE_STDLIB_H',
7560         not `#if STDC_HEADERS'.
7561         Declare malloc if needed.
7562
7563         * backupfile.c: Use `#if !HAVE_DECL...' instead of `#ifndef HAVE_DECL..'
7564         now that autoconf always defines the HAVE_DECL_ symbols.
7565         * human.c: Likewise.
7566         * same.c: Likewise.
7567         * strtoumax.c: Likewise.
7568
7569         * backupfile.c: Arrange for cpp to fail if the configure-time
7570         declaration check was not run.
7571         * hash.c: Likewise.
7572         * human.c: Likewise.
7573         * same.c: Likewise.
7574         * strtoumax.c: Likewise.
7575
7576         * userspec.c (parse_user_spec): If there is no `:' but there is a `.',
7577         then first look up the entire `.'-containing string as a login name.
7578
7579 2000-02-18  Paul Eggert  <eggert@twinsun.com>
7580
7581         * getdate.y: Handle two-digit years with leading zeros correctly.
7582         (textint): New typedef.
7583         (parser_control): Member year changed from int to textint.
7584         All uses changed.
7585         (YYSTYPE): Removed; replaced by %union with int and textint members.
7586         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
7587         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
7588         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
7589         (tSNUMBER, tUNUMBER): Now of type <textintval>.
7590         (date, number, to_year): Use width of number in digits, not its value,
7591         to determine whether it's a 2-digit year, or a 2-digit time.
7592         (yylex): Store number of digits of numeric tokens.
7593         Reported by John Kendall.
7594
7595         (parser_control): Changed from struct parser_control to typedef (for
7596         consistency).  All uses changed.
7597
7598         (tID): Removed; not used.
7599         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
7600
7601 2000-02-14  Paul Eggert  <eggert@twinsun.com>
7602
7603         * getpagesize.h (getpagesize): Port to VMS for Alpha;
7604         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
7605
7606 2000-02-12  Jim Meyering  <meyering@lucent.com>
7607
7608         * userspec.c (ISDIGIT): Define it.
7609         (isdigit): Remove definition.
7610         (is_number): Use ISDIGIT, not isdigit.
7611         <libintl.h>: Include.
7612         (_ and N_): Define.
7613         (parse_user_spec): Mark translatable strings.
7614
7615 2000-02-10  Jim Meyering  <meyering@lucent.com>
7616
7617         With these changes, nanosleep.[ch] are finally enough like the other
7618         lib/* replacement files to compile on a few more losing systems.
7619
7620         * nanosleep.h: Don't include config.h.
7621         Remove prototype from declaration of nanosleep.
7622         (PARAMS): Remove now-unneeded definition.
7623         * nanosleep.c: #undef nanosleep.
7624         (rpl_nanosleep): Rename from nanosleep.
7625
7626 2000-02-03  Jim Meyering  <meyering@lucent.com>
7627
7628         * readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
7629         rather than with `#if HAVE_UTMPNAME'.
7630
7631 2000-02-01  Jim Meyering  <meyering@lucent.com>
7632
7633         * readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
7634
7635 2000-01-31  Jim Meyering  <meyering@lucent.com>
7636
7637         * nanosleep.h (nanosleep): Guard declaration with
7638         `#if ! HAVE_DECL_NANOSLEEP'.
7639         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
7640         the declaration in that vendor's sys/timers.h.
7641         Reported by Christian Krackowizer.
7642
7643         * quotearg.c (ISASCII): Add #undef and move definition to follow
7644         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
7645         (ISPRINT): Likewise.
7646         Reported by Tom Tromey.
7647
7648 2000-01-30  Jim Meyering  <meyering@lucent.com>
7649
7650         * readutmp.c (extract_trimmed_name): Use UT_USER instead of hard-coding
7651         uses of ->ut_name.  The latter doesn't work with new Linux header files
7652         where only utmpx.ut_user is declared.
7653
7654         * readutmp.h (UT_USER): Define.
7655
7656 2000-01-23  Jim Meyering  <meyering@lucent.com>
7657
7658         * Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
7659         obstack.c.
7660
7661 2000-01-22  Jim Meyering  <meyering@lucent.com>
7662
7663         * strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
7664         [! HAVE_DECL_STRTOULL]: Declare strtoull.
7665         Required for some AIX systems.  Reported by Christian Krackowizer.
7666         [TESTING] (main): New function.
7667
7668         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
7669         * dirname.c (dir_name): Support for DOS-style file names with drive
7670         letters.
7671
7672         * quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of iswprint.
7673
7674         * strverscmp.c (ISDIGIT): Define.
7675         (strverscmp): Use ISDIGIT, not isdigit.
7676
7677 2000-01-17  Paul Eggert  <eggert@twinsun.com>
7678
7679         * nanosleep.c (nanosleep):
7680         Don't use SA_INTERRUPT to decide whether to call sigaction, as
7681         POSIX.1 doesn't require SA_INTERRUPT and some systems
7682         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
7683         it's been part of POSIX.1 since day 1 (in 1988).
7684
7685 2000-01-17  Jim Meyering  <meyering@lucent.com>
7686
7687         * interlock: Remove unused file.  Reported by François Pinard.
7688
7689 2000-01-16  Paul Eggert  <eggert@twinsun.com>
7690
7691         * quotearg.c (quotearg_buffer_restyled): Do not quote
7692         alert, backslash, formfeed, and vertical tab unnecessarily in
7693         shell quoting style.
7694
7695
7696 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
7697 Free Software Foundation, Inc.
7698 Copying and distribution of this file, with or without modification,
7699 are permitted provided the copyright notice and this notice are preserved.