diff options
author | Denis Vlasenko | 2006-12-22 13:56:36 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-12-22 13:56:36 +0000 |
commit | 0849207ce049a4ff0287ff5c03d24611e5340e2a (patch) | |
tree | ebc86b4456711b1aa8905894432e544df28e2d63 /coreutils/head.c | |
parent | c5cb38f4d9fa90fdd01ea258390d0059138616b5 (diff) | |
download | busybox-0849207ce049a4ff0287ff5c03d24611e5340e2a.zip busybox-0849207ce049a4ff0287ff5c03d24611e5340e2a.tar.gz |
convert "negaite" config option into reversed (INCLUDE_SUSv2)
Diffstat (limited to 'coreutils/head.c')
-rw-r--r-- | coreutils/head.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/head.c b/coreutils/head.c index f2c9483..56e7a96 100644 --- a/coreutils/head.c +++ b/coreutils/head.c @@ -47,7 +47,7 @@ int head_main(int argc, char **argv) int c; int retval = EXIT_SUCCESS; -#if !ENABLE_DEBUG_YANK_SUSv2 || ENABLE_FEATURE_FANCY_HEAD +#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_HEAD /* Allow legacy syntax of an initial numeric option without -n. */ if (argc > 1 && argv[1][0] == '-' && isdigit(argv[1][1]) @@ -75,8 +75,8 @@ int head_main(int argc, char **argv) #endif case 'n': p = optarg; -#if !ENABLE_DEBUG_YANK_SUSv2 || ENABLE_FEATURE_FANCY_HEAD - GET_COUNT: +#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_HEAD + GET_COUNT: #endif #if !ENABLE_FEATURE_FANCY_HEAD |