pointless whitespace/comment fixes, no code changes
[oweals/busybox.git] / miscutils / ttysize.c
index 5a3f5dcd4a46bb5e963ac407eb9f43bd82a0e141..05455543df959b7962608f4e7c2b68b01843e322 100644 (file)
  */
 #include "libbb.h"
 
-int ttysize_main(int argc, char **argv);
+int ttysize_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
 int ttysize_main(int argc, char **argv)
 {
-       unsigned w,h;
+       unsigned w, h;
        struct winsize wsz;
 
        w = 80;
@@ -39,6 +39,6 @@ int ttysize_main(int argc, char **argv)
                        fmt = "%u %u" + 2; /* " %u" */
                }
        }
-       putchar('\n');
+       bb_putchar('\n');
        return 0;
 }