summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2002-11-21*** empty log message ***Jim Meyering
2002-11-21*** empty log message ***Jim Meyering
2002-11-21update copyright dateJim Meyering
2002-11-21*** empty log message ***Jim Meyering
2002-11-21Merge argmatch cleanups from Bison. Assume C89.Jim Meyering
Do not include <config.h> or <sys/types.h>. Include <stddef.h> instead, since it's all we need for size_t. (PARAMS): Remove. All uses removed. (ARRAY_CARDINALITY): Do not bother to #undef. (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg, ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH): Remove unnecessary parentheses. (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH): Insert necessary parentheses. (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros. (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
2002-11-21Merge argmatch cleanups from Bison. Assume C89.Jim Meyering
Include config.h here, not in argmatch.h. Include stdlib.h, for EXIT_FAILURE. Always include <string.h>, since we assume C89. (EXIT_FAILURE): Remove pre-C89 bug workaround.
2002-11-21*** empty log message ***Jim Meyering
2002-11-21(quotearg_buffer_restyled): If mbrtowc returnsJim Meyering
`(size_t) -1' (at which point it would also set errno to EILSEQ), then restore errno to its previous value. Reported by Phillip Jones via Tim Waugh as https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=76334.
2002-11-21sortJim Meyering
2002-11-21*** empty log message ***Jim Meyering
2002-11-21Update from gnulib.Jim Meyering
2002-11-21*** empty log message ***Jim Meyering
2002-11-21*** empty log message ***Jim Meyering
2002-11-19*** empty log message ***Jim Meyering
2002-11-19Avoid a link-time failure on some Linux systems.Jim Meyering
(STATIC): Define to be empty (_LIBC) or `static' (otherwise). (__mon_yday): Declare with the STATIC attribute. (__mktime_internal): Likewise. Based on a report from Greg Schafer.
2002-11-15.Jim Meyering
2002-11-14*** empty log message ***Jim Meyering
2002-11-14Don't include libintl.h, and don't define `_' -- they're not used.Jim Meyering
2002-11-10.Jim Meyering
2002-11-10Use a return stmt. This isn't Perl.Jim Meyering
2002-11-10Duh. add missing semicolonJim Meyering
Include unistd.h.
2002-11-10*** empty log message ***Jim Meyering
2002-11-09.Jim Meyering
2002-11-09(human_readable): Revamp to avoid warning about unusedJim Meyering
variable 'amt'. Unfortunately this means using some gotos.
2002-11-08use only my permanent addressJim Meyering
2002-11-08*** empty log message ***Jim Meyering
2002-11-08(human_readable): Avoid warnings from gcc -Wshadow.Jim Meyering
2002-11-06.Jim Meyering
2002-11-06*** empty log message ***Jim Meyering
2002-11-06(EXTRA_DIST): Add inttostr.h.Jim Meyering
2002-10-19*** empty log message ***Jim Meyering
2002-10-19Rewrite to support locale-specificJim Meyering
notations like thousands separators. Specify what includer of include.h must include beforehand. (human_group_digits, human_suppress_point_zero, human_autoscale, human_base_1024, human_SI, human_B): New enum values. (human_readable): Rename from human_readable_inexact; put the options before the sizes. All uses changed. The old human_readable function has been removed; use inttostr.h instead. (human_options): Renamed from human_block_size, with new signature that allows block sizes up to UINTMAX_MAX. All callers changed.
2002-10-19*** empty log message ***Jim Meyering
2002-10-19*** empty log message ***Jim Meyering
2002-10-19(libfetish_a_SOURCES): Add imaxtostr.c, offtostr.c, umaxtostr.c.Jim Meyering
(EXTRA_DIST): Add inttostr.c.
2002-10-19New files. From GNU tar.Jim Meyering
2002-10-13*** empty log message ***Jim Meyering
2002-10-13(initialized): Remove declaration now that it's unused.Jim Meyering
2002-10-13There's no need to futz with the rounding mode,Jim Meyering
since the code should work properly even in the default rounding mode. (<fenv.h>): Do not include. (#pragma STDC FENV_ACCESS ON): Remove. (xnanosleep): Don't futz with rounding state.
2002-10-13.Jim Meyering
2002-10-06*** empty log message ***Jim Meyering
2002-10-06Update prototype.Jim Meyering
(SAFE_READ_ERROR): Define.
2002-10-06(safe_read): Change type of function from ssize_t to size_t.Jim Meyering
2002-10-05.Jim Meyering
2002-09-29.Jim Meyering
2002-09-28*** empty log message ***Jim Meyering
2002-09-28(make_path): Restore umask *before* creating the final component.Jim Meyering
2002-09-26*** empty log message ***Jim Meyering
2002-09-26[! HAVE_INTTYPES_H && HAVE_STDINT_H] Include <stdint.h>.Jim Meyering
(UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro. (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than int. Work more efficiently if X is the same width as uintmax_t. Do not compare X to -1, to avoid bogus compiler warning. (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast. Don't assume that f_frsize and f_bsize are the same type.
2002-09-25*** empty log message ***Jim Meyering