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