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/co.c | |
parent | 2f3b113bf98f757cf799839e4ec195a00579a2be (diff) |
Follow exit() with /* NOTREACHED*/ for lint.
``OK niallo@'' niallo@
Diffstat (limited to 'usr.bin/rcs/co.c')
-rw-r--r-- | usr.bin/rcs/co.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/rcs/co.c b/usr.bin/rcs/co.c index 3700c99f60e..3313b1d1f5c 100644 --- a/usr.bin/rcs/co.c +++ b/usr.bin/rcs/co.c @@ -1,4 +1,4 @@ -/* $OpenBSD: co.c,v 1.61 2006/03/16 04:01:46 ray Exp $ */ +/* $OpenBSD: co.c,v 1.62 2006/03/16 04:04:57 ray Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -111,6 +111,7 @@ checkout_main(int argc, char **argv) case 'V': printf("%s\n", rcs_version); exit(0); + /* NOTREACHED */ case 'w': /* if no argument, assume current user */ if (rcs_optarg == NULL) { |