diff options
Diffstat (limited to 'coreutils/cat.c')
-rw-r--r-- | coreutils/cat.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/coreutils/cat.c b/coreutils/cat.c index 7e35fa5ee..5f02233ca 100644 --- a/coreutils/cat.c +++ b/coreutils/cat.c | |||
@@ -168,9 +168,12 @@ static int catv(unsigned opts, char **argv) | |||
168 | int cat_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | 168 | int cat_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
169 | int cat_main(int argc UNUSED_PARAM, char **argv) | 169 | int cat_main(int argc UNUSED_PARAM, char **argv) |
170 | { | 170 | { |
171 | #if ENABLE_FEATURE_CATV || ENABLE_FEATURE_CATN | ||
171 | unsigned opts; | 172 | unsigned opts; |
172 | 173 | ||
173 | opts = getopt32(argv, IF_FEATURE_CATV("^") | 174 | opts = |
175 | #endif | ||
176 | getopt32(argv, IF_FEATURE_CATV("^") | ||
174 | /* -u is ignored ("unbuffered") */ | 177 | /* -u is ignored ("unbuffered") */ |
175 | IF_FEATURE_CATV("etvA")IF_FEATURE_CATN("nb")"u" | 178 | IF_FEATURE_CATV("etvA")IF_FEATURE_CATN("nb")"u" |
176 | IF_FEATURE_CATV("\0" "Aetv" /* -A == -vet */) | 179 | IF_FEATURE_CATV("\0" "Aetv" /* -A == -vet */) |