usr/src/cmd/tar/tar.c
changeset 9521 b061a79d3d1a
parent 9519 fc2830e2f3c4
child 9694 78fafb281255
--- a/usr/src/cmd/tar/tar.c	Thu Apr 30 17:08:54 2009 -0700
+++ b/usr/src/cmd/tar/tar.c	Thu Apr 30 20:04:06 2009 -0700
@@ -19,7 +19,7 @@
  * CDDL HEADER END
  */
 /*
- * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
+ * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
  * Use is subject to license terms.
  */
 
@@ -34,6 +34,8 @@
  * under license from the Regents of the University of California.
  */
 
+#pragma ident	"%Z%%M%	%I%	%E% SMI"
+
 #include <unistd.h>
 #include <sys/types.h>
 #include <sys/param.h>
@@ -4709,8 +4711,6 @@
 
 /* Has file been modified since being put into archive? If so, return > 0. */
 
-static off_t	lookup(char *);
-
 static int
 checkupdate(char *arg)
 {
@@ -4718,6 +4718,7 @@
 	time_t	mtime;
 	long nsecs;
 	off_t seekp;
+	static off_t	lookup(char *);
 
 	rewind(tfile);
 	if ((seekp = lookup(arg)) < 0)