aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2002-04-28 14:04:24 +0000
committerMark Murray <markm@FreeBSD.org>2002-04-28 14:04:24 +0000
commit6c28b67b1e004e45f13067a61ca68a011848b065 (patch)
tree7eeb3380bc04ba3185562f7972e99893c53c4c2a
parent5d09098835c2caabf4f927646250164263757f9d (diff)
Notes
-rw-r--r--usr.bin/getopt/getopt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/getopt/getopt.c b/usr.bin/getopt/getopt.c
index 830f63a3a34e..7ce9c4f5ad02 100644
--- a/usr.bin/getopt/getopt.c
+++ b/usr.bin/getopt/getopt.c
@@ -29,5 +29,5 @@ char *argv[];
for (; optind < argc; optind++)
printf(" %s", argv[optind]);
printf("\n");
- exit(status);
+ return status;
}