Author: eadler
Date: Sat Apr 27 21:59:43 2013
New Revision: 249996
URL: http://svnweb.freebsd.org/changeset/base/249996

Log:
  Add missing static qualifiers
  
  Reviewed by:  ed, jilles
  MFC After:    3 days

Modified:
  head/bin/mkdir/mkdir.c

Modified: head/bin/mkdir/mkdir.c
==============================================================================
--- head/bin/mkdir/mkdir.c      Sat Apr 27 21:18:34 2013        (r249995)
+++ head/bin/mkdir/mkdir.c      Sat Apr 27 21:59:43 2013        (r249996)
@@ -135,7 +135,7 @@ main(int argc, char *argv[])
  * Returns 1 if a directory has been created,
  * 2 if it already existed, and 0 on failure.
  */
-int
+static int
 build(char *path, mode_t omode)
 {
        struct stat sb;
@@ -208,7 +208,7 @@ build(char *path, mode_t omode)
        return (retval);
 }
 
-void
+static void
 usage(void)
 {
 
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to