Author: ed
Date: Sun Nov  6 08:17:35 2011
New Revision: 227187
URL: http://svn.freebsd.org/changeset/base/227187

Log:
  Add missing static keywords to tee(1)

Modified:
  head/usr.bin/tee/tee.c

Modified: head/usr.bin/tee/tee.c
==============================================================================
--- head/usr.bin/tee/tee.c      Sun Nov  6 08:17:29 2011        (r227186)
+++ head/usr.bin/tee/tee.c      Sun Nov  6 08:17:35 2011        (r227187)
@@ -56,9 +56,9 @@ typedef struct _list {
        int fd;
        const char *name;
 } LIST;
-LIST *head;
+static LIST *head;
 
-void add(int, const char *);
+static void add(int, const char *);
 static void usage(void);
 
 int
@@ -125,7 +125,7 @@ usage(void)
        exit(1);
 }
 
-void
+static void
 add(int fd, const char *name)
 {
        LIST *p;
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to