(usage): Remove static attribute.
authorJim Meyering <jim@meyering.net>
Mon, 25 Jan 1999 14:30:08 +0000 (14:30 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 25 Jan 1999 14:30:08 +0000 (14:30 +0000)
Move function be the first in the file.

src/tty.c

index 6e7f180..056cb93 100644 (file)
--- a/src/tty.c
+++ b/src/tty.c
@@ -31,8 +31,6 @@
 #include "closeout.h"
 #include "error.h"
 
-static void usage PARAMS ((int status));
-
 /* The name under which this program was run. */
 char *program_name;
 
@@ -54,6 +52,27 @@ static struct option const longopts[] =
   {NULL, 0, NULL, 0}
 };
 
+void
+usage (int status)
+{
+  if (status != 0)
+    fprintf (stderr, _("Try `%s --help' for more information.\n"),
+            program_name);
+  else
+    {
+      printf (_("Usage: %s [OPTION]...\n"), program_name);
+      printf (_("\
+Print the file name of the terminal connected to standard input.\n\
+\n\
+  -s, --silent, --quiet   print nothing, only return an exit status\n\
+      --help              display this help and exit\n\
+      --version           output version information and exit\n\
+"));
+      puts (_("\nReport bugs to <bug-sh-utils@gnu.org>."));
+    }
+  exit (status);
+}
+
 int
 main (int argc, char **argv)
 {
@@ -108,24 +127,3 @@ main (int argc, char **argv)
 
   exit (isatty (0) ? 0 : 1);
 }
-
-static void
-usage (int status)
-{
-  if (status != 0)
-    fprintf (stderr, _("Try `%s --help' for more information.\n"),
-            program_name);
-  else
-    {
-      printf (_("Usage: %s [OPTION]...\n"), program_name);
-      printf (_("\
-Print the file name of the terminal connected to standard input.\n\
-\n\
-  -s, --silent, --quiet   print nothing, only return an exit status\n\
-      --help              display this help and exit\n\
-      --version           output version information and exit\n\
-"));
-      puts (_("\nReport bugs to <bug-sh-utils@gnu.org>."));
-    }
-  exit (status);
-}