diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2006-03-16 04:04:58 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2006-03-16 04:04:58 +0000 |
commit | c92034840d8dec600a825fc03316c2fb723f665c (patch) | |
tree | 9173e3acb21cf0eb72e80d090b0e3d7bee6411c9 /usr.bin/rcs/rcsclean.c | |
parent | 2f3b113bf98f757cf799839e4ec195a00579a2be (diff) |
Follow exit() with /* NOTREACHED*/ for lint.
``OK niallo@'' niallo@
Diffstat (limited to 'usr.bin/rcs/rcsclean.c')
-rw-r--r-- | usr.bin/rcs/rcsclean.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/rcs/rcsclean.c b/usr.bin/rcs/rcsclean.c index abb2a3f3b15..072a6da1ee8 100644 --- a/usr.bin/rcs/rcsclean.c +++ b/usr.bin/rcs/rcsclean.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcsclean.c,v 1.25 2006/03/15 05:05:36 deraadt Exp $ */ +/* $OpenBSD: rcsclean.c,v 1.26 2006/03/16 04:04:57 ray Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -78,6 +78,7 @@ rcsclean_main(int argc, char **argv) case 'V': printf("%s\n", rcs_version); exit(0); + /* NOTREACHED */ case 'x': rcs_suffixes = rcs_optarg; break; |