- add libbb function str_tolower to convert a string to lowercase.
[oweals/busybox.git] / coreutils / watch.c
index b188b41764aad64c54844e352cee08b7cbae1620..60a4a71ceabd85d678b43438618d2dec9e89b817 100644 (file)
@@ -23,6 +23,7 @@
 //
 // (procps 3.x and procps 2.x are forks, not newer/older versions of the same)
 
+int watch_main(int argc, char **argv);
 int watch_main(int argc, char **argv)
 {
        unsigned opt;
@@ -58,7 +59,6 @@ int watch_main(int argc, char **argv)
                        time_t t;
 
                        get_terminal_width_height(STDOUT_FILENO, &width, 0);
-                       if (width < 1) width = 1; // paranoia
                        header = xrealloc(header, width--);
                        // '%-*s' pads header with spaces to the full width
                        snprintf(header, width, "Every %ds: %-*s", period, width, cmd);