diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-05-09 18:53:54 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-05-09 18:53:54 +0000 |
commit | a7864df9ba736f8b8a5989bf894aa4068ffbc0a0 (patch) | |
tree | 7679141509bbe9b8299878880a8ee13cc2191248 | |
parent | 3b3a3a95208553a3f177b2a46039682064e1766c (diff) | |
download | coreutils-a7864df9ba736f8b8a5989bf894aa4068ffbc0a0.tar.xz |
* fts_.h, fts.c: More C89 portability fixes.
-rw-r--r-- | lib/ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog index 7037d248a..36f403497 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,14 @@ +2005-05-09 Paul Eggert <eggert@cs.ucla.edu> + + * fts_.h (FTS): Use correct type for fts_compar member. + (FTSENT): New member fts_fts. Remove members fts_ino, fts_dev, + fts_nlink; no longer needed now that fts_statp is always there. + All uses changed to use fts_statp instead. + * fts.c (__P): Remove. All uses rewritten to assume C89 or better. + (fts_open): Don't cast a function value in a possibly-unsafe way. + (fts_compar): New function. + (fts_sort): Use it. + 2005-05-08 Paul Eggert <eggert@cs.ucla.edu> * yesno.c: Include getline.h, not ctype.h. |