Move usage() before main() to solve redeclaration error
authorTheodore Tso <tytso@mit.edu>
Thu, 18 Aug 1994 18:19:49 +0000 (18:19 +0000)
committerTheodore Tso <tytso@mit.edu>
Thu, 18 Aug 1994 18:19:49 +0000 (18:19 +0000)
Add #include <string.h> to fix compiler kvetching.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4179 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/mailquery/ChangeLog
src/appl/mailquery/mailquery.c

index aa0e7864e4a8d2438cf26cef2be8d0aad8d22b92..2ed38249827bf3de424e74e10f002777d2b141ea 100644 (file)
@@ -1,3 +1,10 @@
+Thu Aug 18 13:43:07 1994  Theodore Y. Ts'o  (tytso at tsx-11)
+
+       * mailquery.c: Move usage() before main() to solve redeclaration
+       error.
+
+       * mailquery.c: Add #include <string.h> to fix compiler kvetching.
+
 Tue Aug  9 16:45:53 1994  Tom Yu  (tlyu@dragons-lair)
 
        * poplib.c: fix stupid sterror bug
index 9062127cca36842ed528ffeb35f354f58a8a2e2c..b2102b037a6f69e980762865e134bafbf1f0e37d 100644 (file)
@@ -27,6 +27,7 @@
 #include <fcntl.h>
 #include <sys/file.h>  
 #include <stdio.h>
+#include <string.h>
 #ifdef HAVE_UNISTD_H
 #include <unistd.h>
 #endif
@@ -40,6 +41,11 @@ extern int pop_debug;
 int verbose = 0;
 char *exec_cmd;
 
+void usage()
+{
+    fprintf(stderr, "usage: mailquery [-d] [-v] [-e cmd] [user[@host]]\n");
+} 
+
 main(argc, argv)
      int argc;
      char *argv[];
@@ -168,9 +174,3 @@ mailquery(mhost, user)
     return nbytes;
 }
     
-void usage()
-{
-    fprintf(stderr, "usage: mailquery [-d] [-v] [-e cmd] [user[@host]]\n");
-} 
-
-