summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1997-11-30(mempcpy): remove static inline functionJim Meyering
1997-11-24move big chunk of defs to sys2Jim Meyering
1997-11-24*** empty log message ***Jim Meyering
1997-11-19.Jim Meyering
1997-11-19(hash_pjw): Don't use ANSI `U' suffix. Cast instead.Jim Meyering
1997-11-15(mempcpy): Remove definition.Jim Meyering
1997-11-12[!HAVE_MEMPCPY] (mempcpy): Define here instead.Jim Meyering
1997-11-12[!HAVE_MEMPCPY] (mempcpy): Define.Jim Meyering
1997-11-12(copy_dir): Use path_concat rather than open-coding it.Jim Meyering
1997-11-12[!HAVE_MEMPCPY] (mempcpy): Define.Jim Meyering
(batch_convert): Use mempcpy rather than stpcpy.
1997-11-08(fseeko): Define a stub if ! HAVE_FSEEKO.Jim Meyering
(skip): Use fseeko if available. Don't use lseek; it causes the stdio stream to become out of sync with respect to the underyling file descriptor. From Paul Eggert.
1997-11-08(keycompare): call alloca(0) after each iterationJim Meyering
1997-11-08use 2 mempcpy instead of two memcpy callsJim Meyering
1997-11-06(getmonth): Remove HAVE_ALLOCA #ifdefs.Jim Meyering
We always have alloca. (keycompare): Don't use variable size arrays (it's a gcc-extension). Rewrite code that increments new lengths when not `ignoring'.
1997-11-03(main): New option, --max-line-length (-L).Jim Meyering
(wc, write_counts): Implement it. From Bruno Haible.
1997-11-03Put cycle-detecting code inside anJim Meyering
#ifdef ENABLE_CYCLE_CHECK, for systems lacking d_ino. [D_INO_IN_DIRENT]: Define ENABLE_CYCLE_CHECK. (ASSIGN_STRDUPA): Clean up. (right_justify): Use memcpy return value directly. Suggestions from Ulrich Drepper. (remove_cwd_entries) [! defined HAVE_WORKING_READDIR]: Impose overhead of working around non-POSIX readdir implementation only on systems that need it. (remove_cwd_entries): Temporarily save a copy of each entry name in an obstack rather than on the stack via alloca, then free it in the likely event that we don't save the entry in the hash table.
1997-10-28Guard cycle-detecting code inside #ifdef ENABLE_CYCLE_CHECK.Jim Meyering
[D_INO_IN_DIRENT]: Define ENABLE_CYCLE_CHECK.
1997-10-27fix typo in commentJim Meyering
1997-10-26(NLS_STRNCMP) [!ENABLE_NLS]: s/strcmp/strncmp/Jim Meyering
1997-10-25Remove old-style xmalloc and xrealloc decls.Jim Meyering
1997-10-25Remove old-style xmalloc and xrealloc decls.Jim Meyering
1997-10-25Include xalloc.h.Jim Meyering
Remove dcls of xmalloc, xcalloc and xrealloc.
1997-10-25s/xmalloc_exit_failure/xalloc_exit_failureJim Meyering
1997-10-25Remove old-style xmalloc and xrealloc decls.Jim Meyering
1997-10-25Remove old-style xmalloc and xrealloc decls.Jim Meyering
(add_tabstop): Cast first arg of xrealloc to char*.
1997-10-25Include xalloc.h.Jim Meyering
(xmalloc): Remove function. (xrealloc): Remove function. (main): Set xalloc_fail_func to cleanup. Set xmalloc_exit_failure SORT_FAILURE.
1997-10-25Remove old-style xmalloc and xrealloc decls.Jim Meyering
(paste_parallel): Cast first arg of xrealloc to char*.
1997-10-25Remove old-style xmalloc and xrealloc decls.Jim Meyering
(decode_format_string): Cast first arg of xrealloc to char*.
1997-10-25Remove old-style xmalloc and xrealloc decls.Jim Meyering
(add_tabstop): Cast first arg of xrealloc to char*.
1997-10-25Include xalloc.h.Jim Meyering
(xmalloc): Remove function. (xrealloc): Remove function. (main): Set xalloc_fail_func to cleanup.
1997-10-25(ADD_RANGE_PAIR): Cast first arg of xrealloc to char*.Jim Meyering
(getstr): Cast xmalloc return value to char*. (xmalloc): Remove decl. (xrealloc): Remove decl.
1997-10-23[!HAVE_DECLARATION_FREE]: Declare free.Jim Meyering
[!HAVE_DECLARATION_MALLOC]: Declare malloc. [!HAVE_DECLARATION_REALLOC]: Declare realloc. [!HAVE_DECLARATION_STPCPY]: Declare stpcpy. [!HAVE_DECLARATION_STRSTR]: Declare strstr.
1997-10-23Remove stpcpy decl.Jim Meyering
Remove free, malloc, and realloc decls.
1997-10-23Remove free and malloc decls.Jim Meyering
1997-10-23Remove stpcpy decl.Jim Meyering
Remove free and malloc decls.
1997-10-23Remove stpcpy decl.Jim Meyering
1997-10-23[STREQ]: Undef then redefine.Jim Meyering
1997-10-23Remove strstr decl.Jim Meyering
1997-10-23Remove stpcpy decl.Jim Meyering
1997-10-23*** empty log message ***Jim Meyering
1997-10-23Remove stpcpy dcl.Jim Meyering
1997-10-23Remove malloc, and realloc dcls.Jim Meyering
1997-10-23Remove free, malloc, and realloc dcls.Jim Meyering
1997-10-23Remove malloc and realloc dcls.Jim Meyering
1997-10-23Remove stpcpy dcl.Jim Meyering
1997-10-19(remove_cwd_entries): Entries in table of processed dirJim Meyering
entries are not malloc'd, so don't have hash cleanup free them. Rewind dirp upon NULL readdir, required for at least SunOS.
1997-10-18(LONG_MAX): Define if not defined.Jim Meyering
1997-10-17(remove_cwd_entries): Change the while(dp...) to a while(1) loop,Jim Meyering
and move dcl and assignment of dp into the loop.
1997-10-16indentJim Meyering
1997-10-16Add comments. From Orn.Jim Meyering