diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-02-20 18:59:27 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-02-20 18:59:27 +0000 |
commit | e92fd9159fb6edd717fedda1a9ddc053b30649d8 (patch) | |
tree | 1c296a2c25a241031362d723d7bb889fdfd62f42 /bin/ls/util.c | |
parent | bbbc0796d6175153f1d371444f8f8127a6f008e8 (diff) |
add -x, -p, and -m options, based on netbsd work
Diffstat (limited to 'bin/ls/util.c')
-rw-r--r-- | bin/ls/util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ls/util.c b/bin/ls/util.c index e42c54790dc..16ad4e9c159 100644 --- a/bin/ls/util.c +++ b/bin/ls/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.3 1997/09/01 18:29:37 deraadt Exp $ */ +/* $OpenBSD: util.c,v 1.4 1999/02/20 18:59:26 deraadt Exp $ */ /* $NetBSD: util.c,v 1.12 1995/09/07 06:43:02 jtc Exp $ */ /* @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)util.c 8.5 (Berkeley) 4/28/95"; #else -static char rcsid[] = "$OpenBSD: util.c,v 1.3 1997/09/01 18:29:37 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: util.c,v 1.4 1999/02/20 18:59:26 deraadt Exp $"; #endif #endif /* not lint */ @@ -74,6 +74,6 @@ void usage() { (void)fprintf(stderr, - "usage: ls [-1ACFLRSTWacdfikloqrstu] [file ...]\n"); + "usage: ls [-1ACFLRSTWacdfiklmnopqrstux] [file ...]\n"); exit(1); } |