diff options
author | dg <dg@FreeBSD.org> | 1994-09-24 02:59:15 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1994-09-24 02:59:15 +0000 |
commit | 8722740e7f163b275491a0b05c8640341b937558 (patch) | |
tree | b7c3f7bad4381fe5b507b6cf1947fd57803fe125 /bin/cp | |
parent | 111d145dc40797c8894e8aa7dc6632e33bce87bf (diff) | |
download | FreeBSD-src-8722740e7f163b275491a0b05c8640341b937558.zip FreeBSD-src-8722740e7f163b275491a0b05c8640341b937558.tar.gz |
Added $Id$
Diffstat (limited to 'bin/cp')
-rw-r--r-- | bin/cp/Makefile | 1 | ||||
-rw-r--r-- | bin/cp/cp.1 | 1 | ||||
-rw-r--r-- | bin/cp/cp.c | 2 | ||||
-rw-r--r-- | bin/cp/extern.h | 1 | ||||
-rw-r--r-- | bin/cp/utils.c | 2 |
5 files changed, 7 insertions, 0 deletions
diff --git a/bin/cp/Makefile b/bin/cp/Makefile index ad07b68..57883da 100644 --- a/bin/cp/Makefile +++ b/bin/cp/Makefile @@ -1,4 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 +# $Id$ PROG= cp SRCS= cp.c utils.c diff --git a/bin/cp/cp.1 b/bin/cp/cp.1 index f04d37b..9d4a77d 100644 --- a/bin/cp/cp.1 +++ b/bin/cp/cp.1 @@ -33,6 +33,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)cp.1 8.3 (Berkeley) 4/18/94 +.\" $Id$ .\" .Dd April 18, 1994 .Dt CP 1 diff --git a/bin/cp/cp.c b/bin/cp/cp.c index b58bb99..5a81a98 100644 --- a/bin/cp/cp.c +++ b/bin/cp/cp.c @@ -32,6 +32,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #ifndef lint diff --git a/bin/cp/extern.h b/bin/cp/extern.h index 6c7c6e2..6f84535 100644 --- a/bin/cp/extern.h +++ b/bin/cp/extern.h @@ -31,6 +31,7 @@ * SUCH DAMAGE. * * @(#)extern.h 8.2 (Berkeley) 4/1/94 + * $Id$ */ typedef struct { diff --git a/bin/cp/utils.c b/bin/cp/utils.c index 5a5edcb..cd94f80 100644 --- a/bin/cp/utils.c +++ b/bin/cp/utils.c @@ -29,6 +29,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * $Id$ */ #ifndef lint |