diff options
-rw-r--r-- | usr.bin/getopt/getopt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/getopt/getopt.c b/usr.bin/getopt/getopt.c index 830f63a..7ce9c4f 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; } |