diff options
-rw-r--r-- | plugins/negate.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/plugins/negate.c b/plugins/negate.c index 1603342..3e4c493 100644 --- a/plugins/negate.c +++ b/plugins/negate.c | |||
@@ -189,13 +189,8 @@ void | |||
189 | print_usage (void) | 189 | print_usage (void) |
190 | { | 190 | { |
191 | printf ("Usage:\n" " %s %s\n" | 191 | printf ("Usage:\n" " %s %s\n" |
192 | #ifdef HAVE_GETOPT_H | ||
193 | " %s (-h | --help) for detailed help\n" | 192 | " %s (-h | --help) for detailed help\n" |
194 | " %s (-V | --version) for version information\n", | 193 | " %s (-V | --version) for version information\n", |
195 | #else | ||
196 | " %s -h for detailed help\n" | ||
197 | " %s -V for version information\n", | ||
198 | #endif | ||
199 | progname, OPTIONS, progname, progname); | 194 | progname, OPTIONS, progname, progname); |
200 | } | 195 | } |
201 | 196 | ||
@@ -222,7 +217,6 @@ process_arguments (int argc, char **argv) | |||
222 | { | 217 | { |
223 | int c; | 218 | int c; |
224 | 219 | ||
225 | #ifdef HAVE_GETOPT_H | ||
226 | int option_index = 0; | 220 | int option_index = 0; |
227 | static struct option long_options[] = { | 221 | static struct option long_options[] = { |
228 | {"help", no_argument, 0, 'h'}, | 222 | {"help", no_argument, 0, 'h'}, |
@@ -230,15 +224,11 @@ process_arguments (int argc, char **argv) | |||
230 | {"timeout", required_argument, 0, 't'}, | 224 | {"timeout", required_argument, 0, 't'}, |
231 | {0, 0, 0, 0} | 225 | {0, 0, 0, 0} |
232 | }; | 226 | }; |
233 | #endif | ||
234 | 227 | ||
235 | while (1) { | 228 | while (1) { |
236 | #ifdef HAVE_GETOPT_H | ||
237 | c = getopt_long (argc, argv, "hVt:", | 229 | c = getopt_long (argc, argv, "hVt:", |
238 | long_options, &option_index); | 230 | long_options, &option_index); |
239 | #else | 231 | |
240 | c = getopt (argc, argv, "hVt:"); | ||
241 | #endif | ||
242 | if (c == -1 || c == EOF) | 232 | if (c == -1 || c == EOF) |
243 | break; | 233 | break; |
244 | 234 | ||