summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
1999-08-01(quotearg_buffer):Jim Meyering
Don't quote spaces if C quoting style.
1999-07-30.Jim Meyering
1999-07-30Include <sys/types.h> now that linebuffer.h usesJim Meyering
size_t. This is required on at least SunOS4. From Kaveh Ghazi.
1999-07-26*** empty log message ***Jim Meyering
1999-07-20update commentsJim Meyering
1999-07-20(translate_040_to_space) [MOUNTED_GETMNTENT1]: New function.Jim Meyering
(read_filesystem_list) [MOUNTED_GETMNTENT1]: Use it.
1999-07-18.Jim Meyering
1999-07-15(noinst_HEADERS): Add getpagesize.h.Jim Meyering
1999-07-15.Jim Meyering
1999-07-15*** empty log message ***Jim Meyering
1999-07-15(get_fs_usage) [STATFS_TRUNCATES_BLOCK_COUNTS]:Jim Meyering
Work around SunOS botch also when block size is different from 1k.
1999-07-10*** empty log message ***Jim Meyering
1999-07-10cpp indent and split a long lineJim Meyering
1999-07-10use a space, not TAB after #defineJim Meyering
1999-07-10cpp indentJim Meyering
1999-07-04[!defined strtoumax]: Declare strtoumax.Jim Meyering
1999-07-04.Jim Meyering
1999-07-04(readline): Leave room for an extra byteJim Meyering
after the newline; comm needs this for memcoll.
1999-07-04[struct linebuffer] (size): Declare to be of type size_t, not long.Jim Meyering
[struct linebuffer] (length): Likewise.
1999-07-04(readline): Append trailing newline to line.Jim Meyering
1999-07-04(enum human_inexact_style): New enum.Jim Meyering
(human_readable_inexact): New decl.
1999-07-04(human_readable): New function.Jim Meyering
(human_readable_inexact): Renamed from human_readable, with new arg INEXACT_STYLE. Add support for ceiling and floor.
1999-07-04(__strtol): Remove decl; it doesn't work if __strtolJim Meyering
expands to a macro, which occurs in HP-UX 10.20 with strtoumax. (strtol, strtoul): New decls (for pre-ANSI hosts), to replace the above decl.
1999-05-23.Jim Meyering
1999-05-23.Jim Meyering
1999-05-23(libfu_a_SOURCES): Add same.c.Jim Meyering
(noinst_HEADERS): Add same.h.
1999-05-23*** empty log message ***Jim Meyering
1999-05-23New file (function extracted from ln.c).Jim Meyering
1999-05-21remove trailing newlineJim Meyering
1999-05-20add the comment to go with last changeJim Meyering
1999-05-20(get_date): Let mktime deduce tm_isdst if weJim Meyering
have an absolute timestamp, or if the relative timestamp mentions days, months, or years.
1999-05-17(human_readable): Allow from_block_size to be zero.Jim Meyering
1999-05-15.Jim Meyering
1999-05-15(getugroups): Don't dereference a null pointer whenJim Meyering
running `id USER' for some USER that is listed on the RHS in /etc/group. From Sander van Malssen. Add some curly braces, use STREQ, reverse the sense of a test and use `continue' to save a level of nesting.
1999-05-14(version_etc): Put version info and author namesJim Meyering
on the first two lines respectively rather than putting the three lines of copyright info between them.
1999-05-13Include <string.h> or <strings.h> for strlen prototype.Jim Meyering
1999-05-13[__GLIBC__ >= 2]: #if-out prototypes.Jim Meyering
1999-05-10Update from libc.Jim Meyering
1999-05-07.Jim Meyering
1999-05-06(make_dir): When reporting a mkdir failure and theJim Meyering
target cannot be `stat'ed, use the errno from the failed mkdir call, not the one from the stat call. Before this change, running `mkdir -p /no-dir/no-dir' as an unprivileged user would wrongly elicit `No such file or directory' instead of `Permission denied'.
1999-05-05(read_utmp): Use the new definitions.Jim Meyering
1999-05-05Add definitions to help read utmpx on systems with utmpname.Jim Meyering
(UTMP_NAME_FUNCTION): Define. (SET_UTMP_ENT): Likewise. (GET_UTMP_ENT): Likewise. (END_UTMP_ENT): Likewise.
1999-05-05(TYPE_SIGNED, TYPE_MAXIMUM, TYPE_MINIMUM): Define.Jim Meyering
(ULONG_LONG_MAX, LONG_LONG_MAX, LONG_LONG_MIN): Define if not defined. Based on a patch from Kaveh Ghazi.
1999-05-05Include makepath.h libintl.h, not after it.Jim Meyering
Otherwise, we'd get the wrong definition of PARAMS from libintl.h. (The method of defining PARAMS in libintl.h doesn't check PROTOTYPES, which is necessary on Irix4 since cc doesn't define __STDC__.) From Kaveh Ghazi.
1999-05-03(read_utmp): Ignore the return value from utmpname.Jim Meyering
1999-05-01*** empty log message ***Jim Meyering
1999-04-26(utime_null): Don't pass 0666 to open; it's not needed and isn'tJim Meyering
guaranteed to be portable.
1999-04-26(S_IRWXU, S_IRWXG, S_IRWXO): Define if not defined.Jim Meyering
Use proper mode_t types and macros. Don't assume the traditional Unix values for mode bits.
1999-04-26(make_node_op_equals, mode_compile, mode_create_from_ref, mode_adjust):Jim Meyering
Use proper mode_t types and macros. Don't assume the traditional Unix values for mode bits. modechange.h now includes sys/types.h. Include xstrtol.h. (isodigit, oatoi): Remove. (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRWXU, S_IRWXG, S_IRWXO): Define if not defined. (CHMOD_MODE_BITS): New macro. (mode_compile): Convert from octal with xstrtoul, not our own routine.
1999-04-26Include <config.h>, <sys/types.h> for mode_t.Jim Meyering
(struct mode_change): Members affected and value are now mode_t instead of unsigned short.