usr/src/cmd/tar/tar.c
changeset 9694 78fafb281255
parent 9521 b061a79d3d1a
child 11990 0c19ce512337
--- a/usr/src/cmd/tar/tar.c	Fri May 22 12:06:06 2009 +0800
+++ b/usr/src/cmd/tar/tar.c	Thu May 21 22:03:24 2009 -0700
@@ -19,7 +19,7 @@
  * CDDL HEADER END
  */
 /*
- * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
+ * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
  * Use is subject to license terms.
  */
 
@@ -34,8 +34,6 @@
  * 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>
@@ -4711,6 +4709,8 @@
 
 /* Has file been modified since being put into archive? If so, return > 0. */
 
+static off_t	lookup(char *);
+
 static int
 checkupdate(char *arg)
 {
@@ -4718,7 +4718,6 @@
 	time_t	mtime;
 	long nsecs;
 	off_t seekp;
-	static off_t	lookup(char *);
 
 	rewind(tfile);
 	if ((seekp = lookup(arg)) < 0)