diff options
| author | Xin LI <delphij@FreeBSD.org> | 2010-12-14 00:21:34 +0000 |
|---|---|---|
| committer | Xin LI <delphij@FreeBSD.org> | 2010-12-14 00:21:34 +0000 |
| commit | 6715165066f1139e80bae62d93b2d7738295e484 (patch) | |
| tree | b684d3e090af339c6ed61714e3f26d6c04696ad2 /usr.bin/printf/printf.c | |
| parent | b4dac21d68aced92ece88b9591551f6ac0905fd2 (diff) | |
Notes
Diffstat (limited to 'usr.bin/printf/printf.c')
| -rw-r--r-- | usr.bin/printf/printf.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/printf/printf.c b/usr.bin/printf/printf.c index 53585af76dc0..03e0dee5c29a 100644 --- a/usr.bin/printf/printf.c +++ b/usr.bin/printf/printf.c @@ -53,6 +53,7 @@ static const char rcsid[] = #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <sysexits.h> #include <unistd.h> #ifdef SHELL @@ -115,14 +116,14 @@ main(int argc, char *argv[]) case '?': default: usage(); - return (1); + /* NOTREACHED */ } argc -= optind; argv += optind; if (argc < 1) { usage(); - return (1); + /* NOTREACHED */ } #ifdef SHELL @@ -562,4 +563,5 @@ static void usage(void) { (void)fprintf(stderr, "usage: printf format [arguments ...]\n"); + exit(EX_USAGE); } |
