getopt_ulflags -> getopt32.
[oweals/busybox.git] / coreutils / wc.c
index 6ddac4dec47989b853d124f31fd8db57845d2b81..359d9fd6dc8e9c2c5d524acee4aabf6cc60ca407 100644 (file)
@@ -87,7 +87,7 @@ int wc_main(int argc, char **argv)
        char in_word;
        unsigned print_type;
 
-       print_type = bb_getopt_ulflags(argc, argv, "lwcL");
+       print_type = getopt32(argc, argv, "lwcL");
 
        if (print_type == 0) {
                print_type = (1 << WC_LINES) | (1 << WC_WORDS) | (1 << WC_CHARS);