summaryrefslogtreecommitdiff
path: root/bin/sleep
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-08-02 12:41:11 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-08-02 12:41:11 +0000
commit02da6a295f64654852742035477e7a797e371f25 (patch)
treee92e6dd21f5a8dce42cd354ad2363f3f25e82b0c /bin/sleep
parent30de0712e34cf6ebb1f1d8fd814131cbdb4ed1ae (diff)
zap getopt() case of -?, come on, it is the default!
Diffstat (limited to 'bin/sleep')
-rw-r--r--bin/sleep/sleep.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/sleep/sleep.c b/bin/sleep/sleep.c
index 910fa412e9a..b9774dd713e 100644
--- a/bin/sleep/sleep.c
+++ b/bin/sleep/sleep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sleep.c,v 1.2 1996/06/23 14:21:48 deraadt Exp $ */
+/* $OpenBSD: sleep.c,v 1.3 1996/08/02 12:41:09 deraadt Exp $ */
/* $NetBSD: sleep.c,v 1.8 1995/03/21 09:11:11 cgd Exp $ */
/*
@@ -44,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)sleep.c 8.3 (Berkeley) 4/2/94";
#else
-static char rcsid[] = "$OpenBSD: sleep.c,v 1.2 1996/06/23 14:21:48 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: sleep.c,v 1.3 1996/08/02 12:41:09 deraadt Exp $";
#endif
#endif /* not lint */
@@ -66,7 +66,6 @@ main(argc, argv)
while ((ch = getopt(argc, argv, "")) != EOF)
switch(ch) {
- case '?':
default:
usage();
}