diff options
author | jhb <jhb@FreeBSD.org> | 2006-03-24 16:38:02 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2006-03-24 16:38:02 +0000 |
commit | 3d92b82bd8ba73b42a6a9ac9a402858ba7562172 (patch) | |
tree | 7e29299b116232736273c0ea1c22bfb2ba2ba8de /bin/ls/extern.h | |
parent | 0f0a98fed88d1f3b6c70ffa9b1ce7142f85e8e78 (diff) | |
download | FreeBSD-src-3d92b82bd8ba73b42a6a9ac9a402858ba7562172.zip FreeBSD-src-3d92b82bd8ba73b42a6a9ac9a402858ba7562172.tar.gz |
Add a new -U flag to instruct ls to use the birthtime for printing or
sorting.
Submitted by: Andrzej Tobola ato at iem dot pw dot edu dot pl
MFC after: 1 week
Diffstat (limited to 'bin/ls/extern.h')
-rw-r--r-- | bin/ls/extern.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/ls/extern.h b/bin/ls/extern.h index 02a61f5..f290fbb 100644 --- a/bin/ls/extern.h +++ b/bin/ls/extern.h @@ -32,6 +32,8 @@ int acccmp(const FTSENT *, const FTSENT *); int revacccmp(const FTSENT *, const FTSENT *); +int birthcmp(const FTSENT *, const FTSENT *); +int revbirthcmp(const FTSENT *, const FTSENT *); int modcmp(const FTSENT *, const FTSENT *); int revmodcmp(const FTSENT *, const FTSENT *); int namecmp(const FTSENT *, const FTSENT *); |